aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/nodiscard2.C
blob: 56022c3157a9341f09d87177aeead6b651c4bb06 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do compile { target c++11 } }

struct [[nodiscard]] A { };	// { dg-message "" }

A f();				// { dg-message "" }

int main()
{
  f();				// { dg-warning "Wunused-result" }
}