Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / cpp / keywords_enabled / TestCppKeywordsEnabled.py
blob1f6f33f7c78681367cc6d089d2423b546065b6c7
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 @no_debug_info_test
9 def test_keyword(self):
10 # Make sure that C++ keywords work in the expression parser.
11 self.expect("expr -l c++ -- constexpr int i = 3 + 3; i", substrs=["= 6"])