2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / nodiscard2.C
blob56022c3157a9341f09d87177aeead6b651c4bb06
1 // { dg-do compile { target c++11 } }
3 struct [[nodiscard]] A { };     // { dg-message "" }
5 A f();                          // { dg-message "" }
7 int main()
9   f();                          // { dg-warning "Wunused-result" }