uazu / qcell

Statically-checked alternatives to RefCell and RwLock
Apache License 2.0
356 stars 22 forks source link

Switch to compiletest_rs for compilation failure checks #3

Closed uazu closed 4 years ago

uazu commented 5 years ago

Using compile_fail doctests is convenient, but the code can fail to compile for other reasons than the intended one. So the only way to be sure is to strip out all the compile_fail markers, and recheck all the failures one by one. So using the compiletest_rs crate might make things easier in the long run.

uazu commented 4 years ago

Resolved in 0.4.0. Used trybuild instead of compiletest_rs.