diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/mixed/foo.cpp')
| -rw-r--r-- | packages/Python/lldbsuite/test/lang/mixed/foo.cpp | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/packages/Python/lldbsuite/test/lang/mixed/foo.cpp b/packages/Python/lldbsuite/test/lang/mixed/foo.cpp new file mode 100644 index 0000000000000..8a5a6a2b54160 --- /dev/null +++ b/packages/Python/lldbsuite/test/lang/mixed/foo.cpp @@ -0,0 +1,11 @@ +namespace ns { +    int func(void) +    { +        return 0; +    } +} + +extern "C" int foo(void) +{ +    return ns::func(); +} | 
