]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/volatile1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / volatile1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/volatile1.C b/gcc/testsuite/g++.old-deja/g++.other/volatile1.C
deleted file mode 100644 (file)
index c85a394..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Test that failed lvalue-to-rvalue conversion of vf doesn't crash the
-// compiler.
-
-class f_class
-{ };                           // ERROR - candidates
-
-volatile f_class
-ret_v_f_class()
-{
-  f_class t;
-  return t;
-}
-
-int main(void)
-{
-  volatile f_class vf;
-  0 ? ret_v_f_class() : vf;    // ERROR - can't copy volatile lvalue
-  return 0;
-}