summaryrefslogtreecommitdiffstats
path: root/src/test/ui/empty/empty-struct-braces-expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/empty/empty-struct-braces-expr.rs')
-rw-r--r--src/test/ui/empty/empty-struct-braces-expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/empty/empty-struct-braces-expr.rs b/src/test/ui/empty/empty-struct-braces-expr.rs
index f4144277f..2aab3e777 100644
--- a/src/test/ui/empty/empty-struct-braces-expr.rs
+++ b/src/test/ui/empty/empty-struct-braces-expr.rs
@@ -17,7 +17,7 @@ fn main() {
//~^ ERROR expected function, tuple struct or tuple variant, found struct `Empty1`
let e3 = E::Empty3; //~ ERROR expected value, found struct variant `E::Empty3`
let e3 = E::Empty3();
- //~^ ERROR expected function, tuple struct or tuple variant, found struct variant `E::Empty3`
+ //~^ ERROR expected value, found struct variant `E::Empty3`
let xe1 = XEmpty1; //~ ERROR expected value, found struct `XEmpty1`
let xe1 = XEmpty1();