Skip to content

Commit 0b5ddb6

Browse files
committed
Add reminder test to implement strings.
1 parent ad610b5 commit 0b5ddb6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

crates/spirv-builder/src/test/basic.rs

+13
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,16 @@ OpReturnValue %7
3333
OpFunctionEnd"#,
3434
);
3535
}
36+
37+
// TODO: Implement strings to make this compile
38+
#[test]
39+
#[ignore]
40+
fn panic() {
41+
val(r#"
42+
#[allow(unused_attributes)]
43+
#[spirv(fragment)]
44+
pub fn main() {
45+
panic!("aaa");
46+
}
47+
"#);
48+
}

0 commit comments

Comments
 (0)