llvm/lldb/test/API/lang/cpp/non-type-template-param/TestCppNonTypeTemplateParam.py

import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil


class TestCase(TestBase):
    @no_debug_info_test
    def test(self):
        self.build()
        self.dbg.CreateTarget(self.getBuildArtifact("a.out"))

        self.expect_expr(
            "myArray",
            result_type="array<3>",
            result_children=[ValueCheck(name="Arr", type="int[3]")],
        )