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 f29f723 commit 3b259e7Copy full SHA for 3b259e7
source/declarations.tex
@@ -7919,7 +7919,7 @@
7919
struct D2 : C { };
7920
7921
struct D3 : D1, D2 {
7922
- using D1::i; // OK, equivalent to using \tcode{C::i}
+ using D1::i; // OK, equivalent to \tcode{using C::i}
7923
using D1::i; // error: duplicate
7924
using D2::i; // error: duplicate, also names \tcode{C::i}
7925
};
@@ -8007,7 +8007,7 @@
8007
using A::h; // error: conflicts
8008
using B::x;
8009
using A::x; // OK, hides \tcode{struct B::x}
8010
- using A::x; // OK, does not conflict with previous using \tcode{A::x}
+ using A::x; // OK, does not conflict with previous \tcode{using A::x}
8011
x = 99; // assigns to \tcode{A::x}
8012
struct x x1; // \tcode{x1} has class type \tcode{B::x}
8013
}
0 commit comments