Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-52705
/
main.rs
blob: 90bb8ca7537d58e2699ccacc000951959cbea241 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
// aux-build:png2.rs
// compile-flags:--extern png2
// edition:2018
mod
png
{
use
png2
as
png_ext
;
fn
foo
()
->
png_ext
::
DecodingError
{
unimplemented
!()
}
}
fn
main
()
{
println
!(
"Hello, world!"
);
}