Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
noeffect8.C
blob: 48edfdea6855874e80242dacac7254a87aebf23a [
file
] [
log
] [
blame
]
// 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" }
}