diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp b/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp deleted file mode 100644 index 90a20f69e6db..000000000000 --- a/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp +++ /dev/null @@ -1,9 +0,0 @@ -static int Static() -{ - return 1; -} - -int CallStaticB() -{ - return Static(); -} |