9 lines
173 B
Rust
9 lines
173 B
Rust
|
|
// E0116 caused other unrelated errors, so check no unrelated errors are emmitted.
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
let x = "hello";
|
||
|
|
x.split(" ");
|
||
|
|
}
|
||
|
|
|
||
|
|
impl Vec<usize> {} //~ ERROR E0116
|