URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [extern-c-redecl.C] - Rev 862
Go to most recent revision | Compare with Previous | Blame | View Log
// Contributed by Dodji Seketeli <dseketel@redhat.com>
// Origin: PR c++/13699
// { dg-do compile }
namespace A {
extern "C" void foo_func () throw(); // { dg-error "conflicts" }
}
// next line should trigger an error because
// it conflicts with previous declaration of foo_func (), due to
// different exception specifications.
extern "C" void foo_func (); // { dg-error "C language|exception specifications" }
Go to most recent revision | Compare with Previous | Blame | View Log