blob: 17e08f511d71fab9076950049dddc32b95acf1c0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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() {}
|