mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix test UAF
This commit is contained in:
parent
0353860b28
commit
ed39250b75
1 changed files with 1 additions and 1 deletions
|
@ -1919,7 +1919,7 @@ TEST_CASE_FIXTURE(Fixture, "class_indexer")
|
|||
|
||||
AstStatDeclareClass* klass = p1.root->body.data[0]->as<AstStatDeclareClass>();
|
||||
REQUIRE(klass != nullptr);
|
||||
CHECK(declaredClass->indexer);
|
||||
CHECK(klass->indexer);
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(Fixture, "parse_variadics")
|
||||
|
|
Loading…
Add table
Reference in a new issue