about summary refs log tree commit diff
path: root/tests/ui/numeric/const-scope.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/numeric/const-scope.rs')
-rw-r--r--tests/ui/numeric/const-scope.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/numeric/const-scope.rs b/tests/ui/numeric/const-scope.rs
new file mode 100644
index 00000000000..053599a9bb9
--- /dev/null
+++ b/tests/ui/numeric/const-scope.rs
@@ -0,0 +1,12 @@
+const C: i32 = 1i8; //~ ERROR mismatched types
+const D: i8 = C; //~ ERROR mismatched types
+
+const fn foo() {
+    let c: i32 = 1i8; //~ ERROR mismatched types
+    let d: i8 = c; //~ ERROR mismatched types
+}
+
+fn main() {
+    let c: i32 = 1i8; //~ ERROR mismatched types
+    let d: i8 = c; //~ ERROR mismatched types
+}