mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
457 B
Rust
23 lines
457 B
Rust
// A slight variation of issue-85071.rs. Here, a method is called instead
|
|
// of a function, and the warning is about an unreachable definition
|
|
// instead of an unreachable expression.
|
|
|
|
// check-pass
|
|
|
|
#![warn(unused_variables,unreachable_code)]
|
|
|
|
enum Foo {}
|
|
|
|
struct S;
|
|
impl S {
|
|
fn f(&self) -> Foo {todo!()}
|
|
}
|
|
|
|
fn main() {
|
|
let s = S;
|
|
let x = s.f();
|
|
//~^ WARNING: unused variable: `x`
|
|
let _y = x;
|
|
//~^ WARNING: unreachable definition
|
|
}
|