Skip to content

Commit

Permalink
Add regression test for #66757
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Dec 14, 2019
1 parent d286113 commit dc49b2c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/test/ui/never_type/never-value-fallback-issue-66757.rs
@@ -0,0 +1,29 @@
// Regression test for #66757
//
// Test than when you have a `!` value (e.g., the local variable
// never) and an uninferred variable (here the argument to `From`) it
// doesn't fallback to `()` but rather `!`.
//
// run-pass

#![feature(never_type)]

// FIXME(#67225) -- this should be true even without the fallback gate.
#![feature(never_type_fallback)]

struct E;

impl From<!> for E {
fn from(_: !) -> E {
E
}
}

#[allow(unreachable_code)]
#[allow(dead_code)]
fn foo(never: !) {
<E as From<!>>::from(never); // Ok
<E as From<_>>::from(never); // Inference fails here
}

fn main() { }

0 comments on commit dc49b2c

Please sign in to comment.