rust/tests/ui/impl-trait/in-trait/foreign.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
173 B
Rust
Raw Normal View History

2022-09-22 19:56:55 -05:00
// check-pass
// aux-build: rpitit.rs
extern crate rpitit;
fn main() {
// Witness an RPITIT from another crate
let () = <rpitit::Foreign as rpitit::Foo>::bar();
}