Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
nodiscard2.C
blob: 56022c3157a9341f09d87177aeead6b651c4bb06 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
struct
[[
nodiscard
]]
A
{
};
// { dg-message "" }
A f
();
// { dg-message "" }
int
main
()
{
f
();
// { dg-warning "Wunused-result" }
}