]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_typeck/src/check/regionck.rs
fix most compiler/ doctests
[rust.git] / compiler / rustc_typeck / src / check / regionck.rs
index e37e83e748733ac9b074b9ac15fb7bfc234fb886..20456cc427c52a529f645a7b342b215c77eee9a4 100644 (file)
@@ -269,7 +269,7 @@ pub fn new(
     ///
     /// Consider this silly example:
     ///
-    /// ```
+    /// ```ignore UNSOLVED (does replacing @i32 with Box<i32> preserve the desired semantics for the example?)
     /// fn borrow(x: &i32) -> &i32 {x}
     /// fn foo(x: @i32) -> i32 {  // block: B
     ///     let b = borrow(x);    // region: <R0>