Revert "[ELF] Refine isExported/isPreemptible condition"
[llvm-project.git] / lldb / test / API / lang / objcxx / cpp_keywords_enabled / TestObjCppKeywordsEnabled.py
blob68639789bc358046e741f5be1449c72daa81e3e4
1 import lldb
2 from lldbsuite.test.decorators import *
3 from lldbsuite.test.lldbtest import *
4 from lldbsuite.test import lldbutil
7 class TestCase(TestBase):
8 @skipUnlessDarwin
9 @no_debug_info_test
10 def test_keyword(self):
11 # Make sure that C++ keywords work in the expression parser when using
12 # Objective-C++.
13 self.expect(
14 "expr -l objective-c++ -- constexpr int i = 3 + 3; i", substrs=["= 6"]