2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2016-05-01 17:56:07 +12:00
|
|
|
// Tests the coercion casts are handled properly
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
// This should produce only a reification of f,
|
|
|
|
|
// not a fn -> fn cast as well
|
|
|
|
|
let _ = f as fn(&());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn f<'a>(_: &'a ()) { }
|