blob: 5e6d7d899ec1ea87bc5c311126b980a385d17617 [file] [log] [blame]
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() {
}