summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dst/dst-bad-coercions.rs
blob: bffef378c921cde4041900d93fb577a9e944958e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Test implicit coercions involving DSTs and raw pointers.

struct S;
trait T {}
impl T for S {}

struct Foo<T: ?Sized> {
    f: T
}

pub fn main() {
    // Test that we cannot convert from *-ptr to &S and &T
    let x: *const S = &S;
    let y: &S = x; //~ ERROR mismatched types
    let y: &dyn T = x; //~ ERROR mismatched types

    // Test that we cannot convert from *-ptr to &S and &T (mut version)
    let x: *mut S = &mut S;
    let y: &S = x; //~ ERROR mismatched types
    let y: &dyn T = x; //~ ERROR mismatched types

    // Test that we cannot convert an immutable ptr to a mutable one using *-ptrs
    let x: &mut dyn T = &S; //~ ERROR mismatched types
    let x: *mut dyn T = &S; //~ ERROR mismatched types
    let x: *mut S = &S; //~ ERROR mismatched types
}