From 4f8fb8c43e088eef54c74631ab38d8cf3ca6d588 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Mon, 26 Jul 1999 18:26:21 +0000 Subject: [PATCH] New test From-SVN: r28273 --- gcc/testsuite/g++.old-deja/g++.pt/crash44.C | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gcc/testsuite/g++.old-deja/g++.pt/crash44.C diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash44.C b/gcc/testsuite/g++.old-deja/g++.pt/crash44.C new file mode 100644 index 00000000000..3e7b1754659 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/crash44.C @@ -0,0 +1,13 @@ +// Build don't link: +// Origin: Mark Mitchell + +// crash test - XFAIL *-*-* + +template +struct S +{ + template + friend S; +}; + +template struct S;