]> git.proxmox.com Git - rustc.git/blob - src/test/ui/weak-lang-item.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / weak-lang-item.rs
1 // run-pass
2 // aux-build:weak-lang-items.rs
3
4 // ignore-emscripten no threads support
5 // pretty-expanded FIXME #23616
6
7 extern crate weak_lang_items as other;
8
9 use std::thread;
10
11 fn main() {
12 let _ = thread::spawn(move|| {
13 other::foo()
14 });
15 }