blob: 73e1020d7cfcb55b276b58db8dc7d7e9356bdd63 [file] [log] [blame] [edit]
//@ run-pass
//@ aux-build:cci_capture_clause.rs
// This test makes sure we can do cross-crate inlining on functions
// that use capture clauses.
//@ pretty-expanded FIXME #23616
//@ needs-threads
extern crate cci_capture_clause;
pub fn main() {
cci_capture_clause::foo(()).recv().unwrap();
}