2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2018-08-21 10:23:47 -07:00
|
|
|
// aux-build:png2.rs
|
2018-08-24 18:51:32 +03:00
|
|
|
// compile-flags:--extern png2
|
2018-08-09 16:29:22 +03:00
|
|
|
// edition:2018
|
|
|
|
|
|
|
|
mod png {
|
2018-08-21 10:23:47 -07:00
|
|
|
use png2 as png_ext;
|
2018-08-09 16:29:22 +03:00
|
|
|
|
|
|
|
fn foo() -> png_ext::DecodingError { unimplemented!() }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("Hello, world!");
|
|
|
|
}
|