mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +00:00
11 lines
310 B
Rust
11 lines
310 B
Rust
|
extern "C" {
|
||
|
type Item = [T] where [T]: Sized;
|
||
|
//~^ incorrect `type` inside `extern` block
|
||
|
//~| `type`s inside `extern` blocks cannot have `where` clauses
|
||
|
//~| cannot find type `T` in this scope
|
||
|
//~| cannot find type `T` in this scope
|
||
|
//~| extern types are experimental
|
||
|
}
|
||
|
|
||
|
fn main() {}
|