blob: 5db8735899410f2541a014acdde6a3a918dcded1 [file] [log] [blame] [edit]
// 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
}