mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
180 B
Rust
13 lines
180 B
Rust
// https://github.com/rust-lang/rust/issues/49208
|
|
|
|
trait Foo {
|
|
fn foo();
|
|
}
|
|
|
|
impl Foo for [(); 1] {
|
|
fn foo() {}
|
|
}
|
|
|
|
fn main() {
|
|
<[(); 0] as Foo>::foo() //~ ERROR E0277
|
|
}
|