summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-24363.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-24363.rs')
-rw-r--r--tests/ui/issues/issue-24363.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-24363.rs b/tests/ui/issues/issue-24363.rs
new file mode 100644
index 000000000..34726fba9
--- /dev/null
+++ b/tests/ui/issues/issue-24363.rs
@@ -0,0 +1,6 @@
+fn main() {
+ 1.create_a_type_error[ //~ `{integer}` is a primitive type and therefore doesn't have fields
+ ()+() //~ ERROR cannot add
+ // ^ ensure that we typeck the inner expression ^
+ ];
+}