* ru.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / warn / nonnull2.C
blob10515a47405d634c06aad4bf4cf0b1fccd3ab081
1 // PR c++/60764
2 // { dg-options "-Wall" }
4 struct foo
6   foo () __attribute__ ((nonnull (1)));
7 };
9 const foo &x = foo (); // { dg-bogus "null argument" }
10 foo y = foo (); // { dg-bogus "null argument" }