mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 20:06:38 +00:00
9 lines
172 B
Rust
9 lines
172 B
Rust
// E0116 caused other unrelated errors, so check no unrelated errors are emitted.
|
|
|
|
fn main() {
|
|
let x = "hello";
|
|
x.split(" ");
|
|
}
|
|
|
|
impl Vec<usize> {} //~ ERROR E0116
|