rust/tests/ui/issues/issue-78622.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
103 B
Rust
Raw Normal View History

2020-11-01 22:31:19 +00:00
#![crate_type = "lib"]
struct S;
fn f() {
S::A::<f> {}
//~^ ERROR ambiguous associated type
}