summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-fn-in-const-c.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-fn-in-const-c.rs')
-rw-r--r--src/test/ui/borrowck/borrowck-fn-in-const-c.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/test/ui/borrowck/borrowck-fn-in-const-c.rs b/src/test/ui/borrowck/borrowck-fn-in-const-c.rs
deleted file mode 100644
index c638cd08b..000000000
--- a/src/test/ui/borrowck/borrowck-fn-in-const-c.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-// Check that we check fns appearing in constant declarations.
-// Issue #22382.
-
-// Returning local references?
-struct DropString {
- inner: String
-}
-impl Drop for DropString {
- fn drop(&mut self) {
- self.inner.clear();
- self.inner.push_str("dropped");
- }
-}
-const LOCAL_REF: fn() -> &'static str = {
- fn broken() -> &'static str {
- let local = DropString { inner: format!("Some local string") };
- return &local.inner; //~ borrow may still be in use when destructor runs
- }
- broken
-};
-
-fn main() {
-}