summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeof/issue-42060.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/typeof/issue-42060.rs')
-rw-r--r--tests/ui/typeof/issue-42060.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/typeof/issue-42060.rs b/tests/ui/typeof/issue-42060.rs
new file mode 100644
index 000000000..1740b2383
--- /dev/null
+++ b/tests/ui/typeof/issue-42060.rs
@@ -0,0 +1,11 @@
+fn main() {
+ let thing = ();
+ let other: typeof(thing) = thing; //~ ERROR attempt to use a non-constant value in a constant
+ //~^ ERROR `typeof` is a reserved keyword but unimplemented [E0516]
+}
+
+fn f(){
+ let q = 1;
+ <typeof(q)>::N //~ ERROR attempt to use a non-constant value in a constant
+ //~^ ERROR `typeof` is a reserved keyword but unimplemented [E0516]
+}