Skip to content

Commit 636f0a8

Browse files
committed
fix typo in existing test
1 parent 174a569 commit 636f0a8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/testsimplifytypedef.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3836,11 +3836,11 @@ class TestSimplifyTypedef : public TestFixture {
38363836
"}";
38373837
ASSERT_EQUALS(exp, tok(code));
38383838

3839-
const char code2[] = "typedef stuct T* T;\n" // #14669
3839+
const char code2[] = "typedef struct T* T;\n" // #14669
38403840
"struct T {\n"
38413841
" T p;\n"
38423842
"};\n";
3843-
const char exp2[] = "struct T { stuct T * p ; } ;";
3843+
const char exp2[] = "struct T { struct T * p ; } ;";
38443844
ASSERT_EQUALS(exp2, simplifyTypedefC(code2));
38453845
}
38463846

0 commit comments

Comments
 (0)