21 lines
211 B
Rust
21 lines
211 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()
|
|
}
|