4 lines
128 B
Rust
4 lines
128 B
Rust
|
// error-pattern:binary operation + cannot be applied to type `*i`
|
||
|
|
||
|
fn die() -> *int { (0 as *int) + (0 as *int) }
|
||
|
fn main() { }
|