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

[[nodiscard]] int f();

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