2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:png2.rs
|
|
|
|
|
//@ compile-flags:--extern png2
|
|
|
|
|
//@ edition:2018
|
2018-08-09 16:29:22 +03:00
|
|
|
|
|
|
|
|
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!");
|
|
|
|
|
}
|