diff --git a/test/C++Frontend/2003-06-16-VolatileError.c b/test/C++Frontend/2003-06-16-VolatileError.c new file mode 100644 index 00000000000..127e540646a --- /dev/null +++ b/test/C++Frontend/2003-06-16-VolatileError.c @@ -0,0 +1,5 @@ +/* This crashes the CFE. */ +extern int volatile test; +int volatile test = 0; + +int main() { return 0; }