diff options
Diffstat (limited to 'src/test/ui/on-unimplemented/expected-comma-found-token.rs')
-rw-r--r-- | src/test/ui/on-unimplemented/expected-comma-found-token.rs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/on-unimplemented/expected-comma-found-token.rs b/src/test/ui/on-unimplemented/expected-comma-found-token.rs deleted file mode 100644 index 8fb34f211..000000000 --- a/src/test/ui/on-unimplemented/expected-comma-found-token.rs +++ /dev/null @@ -1,13 +0,0 @@ -// Tests that two closures cannot simultaneously have mutable -// access to the variable, whether that mutable access be used -// for direct assignment or for taking mutable ref. Issue #6801. - -#![feature(rustc_attrs)] - -#[rustc_on_unimplemented( - message="the message" - label="the label" //~ ERROR expected `,`, found `label` -)] -trait T {} - -fn main() { } |