Skip to content

Commit c88e207

Browse files
authored
[LifetimeSafety] Fix typo which breaks the test
Fixes test failure introduced by a typo in #165789
1 parent 8fca65c commit c88e207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/unittests/Analysis/LifetimeSafetyTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ TEST_F(LifetimeAnalysisTest, PointersInACycle) {
529529
MyObj* temp = p1;
530530
p1 = p2;
531531
p2 = p3;
532-
p3 = temp;B
532+
p3 = temp;
533533
POINT(in_loop);
534534
}
535535
POINT(after_loop);

0 commit comments

Comments
 (0)