URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [decl-specifier-1.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
// Origin: PRs 7721 and 7803
// { dg-do compile }
namespace N
{
template<typename>
struct X { }; // { dg-message "N::X" }
}
N::X X; // { dg-error "" "" }
int main()
{
return sizeof(X); // { dg-error "" "" }
// { dg-message "suggested alternative" "suggested alternative" { target *-*-* } 15 }
}
Go to most recent revision | Compare with Previous | Blame | View Log