summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsized/maybe-bounds-where-cpass.rs
blob: 0e018cdabb23f26b20421e6077f9d2c780122236 (plain)
1
2
3
4
5
6
7
8
9
// check-pass

struct S<T>(*const T) where T: ?Sized;


fn main() {
    let u = vec![1, 2, 3];
    let _s: S<[u8]> = S(&u[..]);
}