Commit cc5c4e2f by Alexandre Oliva Committed by Alexandre Oliva

typedef5.C: add some more tests involving checks involving function types and aliases

	* g++.old-deja/g++.other/typedef5.C: add some more tests involving
	checks involving function types and aliases

From-SVN: r22430
parent b6bee398
1998-09-15 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.other/typedef5.C: add some more tests involving
checks involving function types and aliases
1998-09-12 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.other/typedef5.C: check whether typedefs can be
......
......@@ -4,5 +4,13 @@
typedef int t;
typedef t* u;
typedef u v;
typedef v* (*w)(t);
typedef int t;
typedef t* u;
typedef u v;
typedef v* (*w)(t const); // this is ok
typedef v* (*w)(t); // ERROR - covers message `previously declared here'
typedef v* (*const w)(t); // ERROR - invalid redeclaration
typedef v const* (*w)(t); // ERROR - invalid redeclaration
typedef v* const (*w)(t); // ERROR - invalid redeclaration
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment