summaryrefslogtreecommitdiffstats
path: root/src/test/ui/chalkify/basic.rs
blob: dbd60fc8bb1ff1d9bb5b7d146c57f8f445d102c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass
// compile-flags: -Z chalk

trait Foo {}

struct Bar {}

impl Foo for Bar {}

fn main() -> () {
    let _ = Bar {};
}