Skip to content

Commit 1681811

Browse files
authored
Merge pull request #6200 from Michael137/bugfix/lldb-fix-default-args-assertion-to-20221013
[stable/20221013][lldb][Test] Fix incorrect assertion on omitted template argument
2 parents ae4e14a + c260e9c commit 1681811

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/lang/cpp/complete-type-check/TestCppIsTypeComplete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_forward_declarations(self):
5151
# Record types without a defining declaration are not complete.
5252
self.assertPointeeIncomplete("FwdClass *", "fwd_class")
5353
self.assertPointeeIncomplete("FwdClassTypedef *", "fwd_class_typedef")
54-
self.assertPointeeIncomplete("FwdTemplateClass<> *", "fwd_template_class")
54+
self.assertPointeeIncomplete("FwdTemplateClass<int> *", "fwd_template_class")
5555

5656
# A pointer type is complete even when it points to an incomplete type.
5757
fwd_class_ptr = self.expect_expr("fwd_class", result_type="FwdClass *")

0 commit comments

Comments
 (0)