]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-41549.rs
Remove "here" from "expected one of X here"
[rust.git] / src / test / ui / issues / issue-41549.rs
1 // aux-build:issue-41549.rs
2
3
4 extern crate issue_41549;
5
6 struct S;
7
8 impl issue_41549::Trait for S {
9     const CONST: () = (); //~ ERROR incompatible type for trait
10 }
11
12 fn main() {}