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