1
0

cxx_attribute_deprecated.cpp 78 B

1234567891011
  1. [[deprecated]]
  2. int foo()
  3. {
  4. return 0;
  5. }
  6. int someFunc()
  7. {
  8. return foo();
  9. }