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