]> git.lizzy.rs Git - rust.git/blob - tests/ui/chalkify/basic.rs
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / chalkify / basic.rs
1 // check-pass
2 // compile-flags: -Z trait-solver=chalk
3
4 trait Foo {}
5
6 struct Bar {}
7
8 impl Foo for Bar {}
9
10 fn main() -> () {
11     let _ = Bar {};
12 }