URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [exception1.C] - Rev 12
Compare with Previous | Blame | View Log
/* PR 2743 */
/* {dg-do compile} */
namespace ns {
class Exception
{
};
}
namespace ns
{
class Test {
public:
inline Test() throw( Exception );
inline Test(int n ) throw( Exception );
private:
int i;
};
}
// This line used to fail because Exception wasn't looked up in the
// right scope.
ns::Test::Test() throw( Exception ) : i( 1 )
{
}
ns::Test::Test( int n ) throw( Exception ) : i( n )
{
}
int main(int argc, char* argv) {
ns::Test test;
}