Commit 7a1af550 by Lee Millward

add missing test for "typedef auto"

From-SVN: r117642
parent 26106542
......@@ -4,3 +4,8 @@ typedef static int a; // { dg-error "conflicting" }
typedef register int b; // { dg-error "conflicting" }
typedef extern int c; // { dg-error "conflicting" }
static typedef int a; // { dg-error "conflicting" }
int foo()
{
typedef auto int bar; // { dg-error "conflicting" }
}
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