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