summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-cast-different-types.rs
blob: 5e6d7d899ec1ea87bc5c311126b980a385d17617 (plain)
1
2
3
4
5
6
const a: &str = "foo";
const b: *const u8 = a as *const u8; //~ ERROR casting
const c: *const u8 = &a as *const u8; //~ ERROR casting

fn main() {
}