@@ -20,7 +20,7 @@ const _VERIFY_MODULE_PATH: () = {
2020 let path = core:: module_path!( ) . as_bytes ( ) ;
2121 if !matches ! ( path, b"prudent::frontend" ) {
2222 panic ! (
23- "Do NOT load frontend_with_tests .rs in other crates. It's internal in prudent only."
23+ "Do NOT load frontend_with_compile_fail_tests .rs in other crates. It's internal in prudent only."
2424 ) ;
2525 }
2626} ;
@@ -63,7 +63,7 @@ pub use crate::frontend_untested::PRUDENT_INTERNAL_LINTED_VERSION;
6363/// ```
6464/// Use the result of `unsafe_fn!` immediately as an array/slice:
6565/// ```test_harness
66- /// //TODO failing
66+ /// //TODO? failing??
6767/// //# ::prudent::load!("frontend_linted.rs");
6868/// //::prudent::load!(any: "frontend_linted.rs");
6969/// ::prudent::load!(any: "frontend_linted.rs");
@@ -75,6 +75,7 @@ pub use crate::frontend_untested::PRUDENT_INTERNAL_LINTED_VERSION;
7575/// ```
7676/// Use the result of `unsafe_fn!` immediately as a mutable array/slice (assign/modify its slot(s)):
7777/// ```
78+ /// // @TODO MOVE OUT TO coverage_positive/
7879/// ::prudent::load!(any: "frontend_linted.rs");
7980/// use self::prudent::*;
8081/// fn _test_unsafe_fn_returning_mut_ref() {
@@ -92,6 +93,7 @@ pub use crate::frontend_untested::PRUDENT_INTERNAL_LINTED_VERSION;
9293/// ```
9394/// The same, but the function takes an argument (and no leak):
9495/// ```
96+ /// // @TODO MOVE OUT TO coverage_positive/
9597/// ::prudent::load!(any: "frontend_linted.rs");
9698/// use crate::prudent::*;
9799/// unsafe fn return_same_mut_ref<T>(mref: &mut T) -> &mut T {
@@ -219,6 +221,7 @@ pub use crate::frontend_untested::internal_prudent_unsafe_method_internal_build_
219221#[ allow( clippy:: useless_attribute) ]
220222#[ allow( clippy:: needless_doctest_main) ]
221223/// ```
224+ /// // @TODO MOVE OUT TO coverage_positive/
222225/// ::prudent::load!(any: "frontend_linted.rs");
223226/// //use self::prudent::*;
224227/// fn main() {
0 commit comments