aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/cast2.C
blob: ec1c6b27fb654e31ba85fab3cd277d986e640b3d (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
27
28
29
30
31
32
// { dg-do assemble  }

// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 10 Jan 2001 <nathan@codesourcery.com>

// Bug 1588. We ICE'd on reparsing an absdcl as a cast inside a template
// function.

class A {
public:
 template <class T> void f(void *CLUTp);
};

template <class T> void A::f(void *CLUTp)
{
    void *CLUT;

    CLUT = (unsigned char [3][256])CLUTp; // { dg-error "" } cast to array

    return;
}


int main()
{
	A myobj;
	unsigned char t[3][256];

	myobj.f<unsigned char>(t);
		
	return 0;
}