9 lines
73 B
Plaintext
9 lines
73 B
Plaintext
// ERROR:5:null
|
|
unit badnullv;
|
|
|
|
fn bad() -> void {
|
|
let p = null;
|
|
}
|
|
|
|
|