summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeof/issue-100183.rs
blob: 13e9493eaa59b2d7ff37d189d43a25d42281206d (plain)
1
2
3
4
5
6
struct Struct {
    y: (typeof("hey"),),
    //~^ ERROR `typeof` is a reserved keyword but unimplemented
}

fn main() {}