]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-52705/main.rs
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-52705 / main.rs
1 // run-pass
2 #![allow(dead_code)]
3 // aux-build:png2.rs
4 // compile-flags:--extern png2
5 // edition:2018
6
7 mod png {
8     use png2 as png_ext;
9
10     fn foo() -> png_ext::DecodingError { unimplemented!() }
11 }
12
13 fn main() {
14     println!("Hello, world!");
15 }