2019-07-27 00:54:25 +03:00
|
|
|
//@ run-pass
|
|
|
|
|
|
2018-09-14 12:20:28 +02:00
|
|
|
#![allow(improper_ctypes)]
|
|
|
|
|
#![allow(dead_code)]
|
2012-02-05 17:54:52 -08:00
|
|
|
// Issue #901
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2013-03-05 14:42:58 -08:00
|
|
|
mod libc {
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2013-03-05 14:42:58 -08:00
|
|
|
pub fn printf(x: ());
|
|
|
|
|
}
|
2012-02-05 17:54:52 -08:00
|
|
|
}
|
2013-03-05 14:42:58 -08:00
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
pub fn main() {}
|