summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-extern_types.rs
blob: 103f8eed6f3c0d0bffda7e754c376f534af7c06a (plain)
1
2
3
4
5
extern "C" {
    type T; //~ ERROR extern types are experimental
}

fn main() {}