Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
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" }
}