| 650 | // Test that deprecated function macro can be applied |
| 651 | FL_DEPRECATED("This is a test deprecated function") |
| 652 | inline int deprecated_test_function() { |
| 653 | return 42; |
| 654 | } |
| 655 | |
| 656 | FL_TEST_CASE("fl::deprecated_function_usage") { |
| 657 | // Function should still work even if deprecated |