Add reminder test to implement strings.

This commit is contained in:
khyperia 2020-11-02 11:45:20 +01:00
parent ad610b57f5
commit 0b5ddb697b

View File

@ -33,3 +33,16 @@ OpReturnValue %7
OpFunctionEnd"#,
);
}
// TODO: Implement strings to make this compile
#[test]
#[ignore]
fn panic() {
val(r#"
#[allow(unused_attributes)]
#[spirv(fragment)]
pub fn main() {
panic!("aaa");
}
"#);
}