blob: d595d1dd7e6d1c0404cb3545134636d28d3ce8c0 (
plain)
1
2
3
4
5
6
7
|
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`
}
|