rust/src/test/ui/consts/self_normalization.rs

17 lines
220 B
Rust
Raw Normal View History

2019-03-22 18:33:12 +01:00
// compile-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() {}