1import lldb 2from lldbsuite.test.decorators import * 3from lldbsuite.test.lldbtest import * 4from lldbsuite.test import lldbutil 5 6 7class TestCase(TestBase): 8 9 @skipUnlessDarwin 10 @no_debug_info_test 11 def test_keyword(self): 12 # Make sure that C++ keywords work in the expression parser when using 13 # Objective-C++. 14 self.expect("expr -l objective-c++ -- constexpr int i = 3 + 3; i", substrs=["= 6"]) 15