mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
209 B
Rust
20 lines
209 B
Rust
// run-pass
|
|
// Regression test for #42210.
|
|
|
|
// compile-flags: -g
|
|
|
|
trait Foo {
|
|
fn foo() { }
|
|
}
|
|
|
|
struct Bar;
|
|
|
|
trait Baz {
|
|
}
|
|
|
|
impl Foo for (Bar, dyn Baz) { }
|
|
|
|
|
|
fn main() {
|
|
<(Bar, dyn Baz) as Foo>::foo()
|
|
}
|