summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-83621-placeholder-static-in-extern.rs
blob: 16ec2a546434c20fbe79ebfb10d1445eb65841ea (plain)
1
2
3
4
5
6
7
// Regression test for #83621.

extern "C" {
    static x: _; //~ ERROR: [E0121]
}

fn main() {}