mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
15 lines
250 B
Rust
15 lines
250 B
Rust
|
// This test case should ensure that miniz_oxide isn't
|
||
|
// suggested, since it's not a direct dependency.
|
||
|
|
||
|
fn a() -> Result<u64, i32> {
|
||
|
Err(1)
|
||
|
}
|
||
|
|
||
|
fn b() -> Result<u32, i32> {
|
||
|
a().into() //~ERROR [E0277]
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let _ = dbg!(b());
|
||
|
}
|