cmake/Tests/CompileFeatures/cxx_attribute_deprecated.cpp
2018-08-09 18:06:22 +02:00

8 lines
76 B
C++

[[deprecated]] int foo() { return 0; }
int someFunc()
{
return foo();
}