summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/unused_braces.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/const-generics/unused_braces.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/const-generics/unused_braces.stderr b/src/test/ui/const-generics/unused_braces.stderr
deleted file mode 100644
index 553a3a0f8..000000000
--- a/src/test/ui/const-generics/unused_braces.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-warning: unnecessary braces around const expression
- --> $DIR/unused_braces.rs:9:14
- |
-LL | let _: A<{ 7 }>;
- | ^^ ^^
- |
-note: the lint level is defined here
- --> $DIR/unused_braces.rs:3:9
- |
-LL | #![warn(unused_braces)]
- | ^^^^^^^^^^^^^
-help: remove these braces
- |
-LL - let _: A<{ 7 }>;
-LL + let _: A<7>;
- |
-
-warning: 1 warning emitted
-