rust/src/test/ui/chalkify/basic.rs
2020-05-07 17:35:58 -04:00

12 lines
132 B
Rust

// check-pass
// compile-flags: -Z chalk
trait Foo {}
struct Bar {}
impl Foo for Bar {}
fn main() -> () {
let _ = Bar {};
}