14
Test/struct.error.frag
Normal file
14
Test/struct.error.frag
Normal file
@@ -0,0 +1,14 @@
|
||||
#version 460
|
||||
|
||||
struct A {
|
||||
float x;
|
||||
};
|
||||
|
||||
A test() {
|
||||
return A(1.0);
|
||||
}
|
||||
|
||||
void main() {
|
||||
test().z; // A.z does not exist, causes a crash
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user