cmake/Tests/CompileFeatures/cxx_attribute_deprecated.cpp

8 lines
76 B
C++
Raw Normal View History

2015-04-27 22:25:09 +02:00
2018-08-09 18:06:22 +02:00
[[deprecated]] int foo() { return 0; }
2015-04-27 22:25:09 +02:00
int someFunc()
{
return foo();
}