mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
266 B
Rust
22 lines
266 B
Rust
// run-pass
|
|
// Regression test for #42210.
|
|
|
|
// compile-flags: -g
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
|
|
|
trait Foo {
|
|
fn foo() { }
|
|
}
|
|
|
|
struct Bar;
|
|
|
|
trait Baz {
|
|
}
|
|
|
|
impl Foo for (Bar, dyn Baz) { }
|
|
|
|
|
|
fn main() {
|
|
<(Bar, dyn Baz) as Foo>::foo()
|
|
}
|