summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-42210.rs
blob: 318e3099f98ba4139df86f2dbaf881881d5ed754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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()
}