summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-78622.rs
blob: c00fd2660636799e23143529708f1b277cf2c539 (plain)
1
2
3
4
5
6
7
#![crate_type = "lib"]

struct S;
fn f() {
    S::A::<f> {}
    //~^ ERROR ambiguous associated type
}