rust/src/test/ui/chalkify/basic.rs

13 lines
132 B
Rust
Raw Normal View History

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