URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [noeffect8.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/26696, 28996
// { dg-do compile }
// { dg-options "-Waddress" }
struct A
{
static void f() {}
};
int main()
{
A a;
a.f; // { dg-warning "not call" }
A().f; // { dg-warning "not call" }
}