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, 11 insertions, 0 deletions
diff --git a/src/test/ui/consts/promote_fn_calls.rs b/src/test/ui/consts/promote_fn_calls.rs
new file mode 100644
index 000000000..8995aaacd
--- /dev/null
+++ b/src/test/ui/consts/promote_fn_calls.rs
@@ -0,0 +1,11 @@
+// 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();
+}