We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fce8e55 commit a8ca3dbCopy full SHA for a8ca3db
clang/test/SemaCXX/using-if-exists.cpp
@@ -36,7 +36,7 @@ int i = A(); // OK since `A` resolved to the single UIE in the previous lin
36
using NS1::B UIE; // OK since this declaration shouldn't exist since `B` is not in `NS1`
37
using NS2::B UIE; // OK since this declaration shouldn't exist since `B` is not in `NS2
38
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
+B myB; // OK since `B` resolved to the single UIE in the previous line
40
41
using NS3::C UIE;
42
using NS2::C UIE; // OK since NS2::C doesn't exist
0 commit comments