X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fext%2Ftypeof4.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.dg%2Fext%2Ftypeof4.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=2f4237035147dc989e30b86c939b0c6192ac6d34;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.dg/ext/typeof4.C b/gcc/testsuite/g++.dg/ext/typeof4.C deleted file mode 100644 index 2f423703..00000000 --- a/gcc/testsuite/g++.dg/ext/typeof4.C +++ /dev/null @@ -1,13 +0,0 @@ -// { dg-do compile } -// { dg-options "" } - -// Origin: Wolfgang Bangerth - -// PR c++/9459: typeof in return type of template function - -void foo (int) {} -void foo (double) {} - -template -typeof(foo(1)) -bar () { return foo(1); }