rust/tests/ui/impl-trait/xcrate_simple.rs

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

10 lines
111 B
Rust
Raw Normal View History

//@ run-pass
//@ aux-build:xcrate.rs
2018-05-22 12:31:56 +00:00
extern crate xcrate;
fn main() {
xcrate::return_internal_fn()();
}