rust/tests/ui/consts/closure-in-foreign-crate.rs

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

9 lines
160 B
Rust
Raw Normal View History

//@ aux-build:closure-in-foreign-crate.rs
//@ build-pass
extern crate closure_in_foreign_crate;
const _: () = closure_in_foreign_crate::test();
fn main() {}