2012-11-01 17:16:46 -05:00
|
|
|
// Before fn subtyping was properly implemented,
|
|
|
|
// we reported errors in this case:
|
2012-05-21 15:05:06 -05:00
|
|
|
|
2012-11-01 17:16:46 -05:00
|
|
|
fn not_ok(a: &uint, b: &b/uint) {
|
|
|
|
let mut g: fn@(x: &uint) = fn@(x: &b/uint) {};
|
2012-06-30 06:23:59 -05:00
|
|
|
//~^ ERROR mismatched types
|
2012-11-01 17:16:46 -05:00
|
|
|
g(a);
|
2012-05-21 15:05:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|