summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsafe/unsafe-subtyping.rs
blob: a4b748a50f2f0f34ddb4ca89c697213338980b1e (plain)
1
2
3
4
5
6
7
8
9
10
11
// Check that safe fns are not a subtype of unsafe fns.

fn foo(x: Option<fn(i32)>) -> Option<unsafe fn(i32)> {
    x //~ ERROR mismatched types
}

fn bar(x: fn(i32)) -> unsafe fn(i32) {
    x // OK, coercion!
}

fn main() { }