1import lldb
2from lldbsuite.test.decorators import *
3from lldbsuite.test.lldbtest import *
4from lldbsuite.test import lldbutil
5
6class TestFunctionTemplateSpecializationTempArgs(TestBase):
7
8    def test_function_template_specialization_temp_args(self):
9        self.build()
10
11        (self.target, self.process, _, bkpt) = lldbutil.run_to_source_breakpoint(self, '// break here',
12                lldb.SBFileSpec("main.cpp", False))
13
14        self.expect_expr("p0", result_type="VType", result_children=[])
15