aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb116.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb116.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb116.C23
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb116.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb116.C
deleted file mode 100644
index 63f5e79c062..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb116.C
+++ /dev/null
@@ -1,23 +0,0 @@
-template <class INT>
-class b
-{
-private:
- char a(int x)
- {
- union {
- int i;
- char c;
- } val;
- val.i = x;
- return val.c;
- };
-
-public:
- b() {
- }
-};
-
-int main() {
- b<int> n;
- return 0;
-}