Skip to content

Commit a8ca3db

Browse files
PiJoulespetrhosek
andauthored
Update clang/test/SemaCXX/using-if-exists.cpp
Co-authored-by: Petr Hosek <[email protected]>
1 parent fce8e55 commit a8ca3db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/SemaCXX/using-if-exists.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int i = A(); // OK since `A` resolved to the single UIE in the previous lin
3636
using NS1::B UIE; // OK since this declaration shouldn't exist since `B` is not in `NS1`
3737
using NS2::B UIE; // OK since this declaration shouldn't exist since `B` is not in `NS2
3838
using NS3::B UIE; // OK since prior UIEs of `B` shouldn't have declare anything since they don't exist
39-
B myB; // OK since `B` resolved to the single UIE in the previous lin
39+
B myB; // OK since `B` resolved to the single UIE in the previous line
4040

4141
using NS3::C UIE;
4242
using NS2::C UIE; // OK since NS2::C doesn't exist

0 commit comments

Comments
 (0)