rust/tests/ui/feature-gates/feature-gate-extern_types.rs

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

6 lines
81 B
Rust
Raw Normal View History

2020-09-01 21:12:52 +00:00
extern "C" {
2017-09-03 18:53:58 +00:00
type T; //~ ERROR extern types are experimental
}
fn main() {}