rust/tests/ui/issues/issue-32086.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
232 B
Rust
Raw Normal View History

2016-06-03 20:15:00 +00:00
struct S(u8);
const C: S = S(10);
fn main() {
let C(a) = S(11); //~ ERROR expected tuple struct or tuple variant, found constant `C`
let C(..) = S(11); //~ ERROR expected tuple struct or tuple variant, found constant `C`
2016-06-03 20:15:00 +00:00
}