summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/error14.C
blob: 04f2f56b6dc6d611fb377fa70a17a20623dac3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// { dg-options "-fshow-column" }
// PR c++/13970

struct X
{
    template< typename Z > Z Zunc()
    {
        return Z();
    }

    template< typename Z > void Zinc()
    {
    }

    void tst()
    {
        Zunc<int>();

        Zinc<int>( //);
		  //    }

}; // { dg-error "2:expected '.' at end of input" "at end of input" }
   // { dg-error "1:expected primary-expression before '.' token" "primary" { target *-*-* } 22 }
   // { dg-error "1:expected unqualified-id" "unqualified-id" { target *-*-* } 22 }
   // { dg-error "1:expected ';' before '.' token" "function" { target *-*-* } 22 }