summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/promote_fn_calls.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/promote_fn_calls.rs')
-rw-r--r--src/test/ui/consts/promote_fn_calls.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/consts/promote_fn_calls.rs b/src/test/ui/consts/promote_fn_calls.rs
deleted file mode 100644
index 8995aaacd..000000000
--- a/src/test/ui/consts/promote_fn_calls.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// build-pass (FIXME(62277): could be check-pass?)
-// aux-build:promotable_const_fn_lib.rs
-
-extern crate promotable_const_fn_lib;
-
-use promotable_const_fn_lib::{foo, Foo};
-
-fn main() {
- let x: &'static usize = &foo();
- let x: &'static usize = &Foo::foo();
-}