mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
220 B
Rust
16 lines
220 B
Rust
//@ check-pass
|
|
|
|
fn testfn(_arr: &mut [(); 0]) {}
|
|
|
|
trait TestTrait {
|
|
fn method();
|
|
}
|
|
|
|
impl TestTrait for [(); 0] {
|
|
fn method() {
|
|
let mut arr: Self = [(); 0];
|
|
testfn(&mut arr);
|
|
}
|
|
}
|
|
|
|
fn main() {}
|