summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/closure-in-foreign-crate.rs
blob: fc8f480e706bcd695f0e74057061991266fa672c (plain)
1
2
3
4
5
6
7
8
// aux-build:closure-in-foreign-crate.rs
// build-pass

extern crate closure_in_foreign_crate;

const _: () = closure_in_foreign_crate::test();

fn main() {}