diff options
Diffstat (limited to 'tests/ui/error-codes/E0428.rs')
-rw-r--r-- | tests/ui/error-codes/E0428.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0428.rs b/tests/ui/error-codes/E0428.rs new file mode 100644 index 000000000..eb9594fb8 --- /dev/null +++ b/tests/ui/error-codes/E0428.rs @@ -0,0 +1,5 @@ +struct Bar; //~ previous definition of the type `Bar` here +struct Bar; //~ ERROR E0428 + +fn main () { +} |