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

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

13 lines
180 B
Rust
Raw Normal View History

2018-11-04 22:00:03 -06:00
// aux-build:issue-41549.rs
extern crate issue_41549;
struct S;
impl issue_41549::Trait for S {
const CONST: () = (); //~ ERROR incompatible type for trait
}
fn main() {}