]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/basic.rs
Auto merge of #86155 - alexcrichton:abort-on-unwind, r=nikomatsakis
[rust.git] / src / test / ui / chalkify / basic.rs
1 // check-pass
2 // compile-flags: -Z chalk
3
4 trait Foo {}
5
6 struct Bar {}
7
8 impl Foo for Bar {}
9
10 fn main() -> () {
11     let _ = Bar {};
12 }