11 lines
103 B
Plaintext
11 lines
103 B
Plaintext
// ERROR:9:generic
|
|
unit badfew;
|
|
|
|
struct Box(T) {
|
|
value: T,
|
|
}
|
|
|
|
fn bad() -> void {
|
|
var x: Box;
|
|
}
|