C/C++
cppiso2.txt
Associated article: C++ Compilers & ISO Conformance
Tags: C/C++
Published source code accompanying the article by Brian A. Malloy, James F. Power, Tanton Gibbs in which they examine how eight popular C++ compilers measure up to ISO Conformance standards. Also see ISOCPP_1.ZIP.
C++ Compilers & ISO Conformance
by Brian A. Malloy, James F. Power, and Tanton H. Gibbs
Listing One
1 class A {
2 public :
3 static int n;
4 };
5 int main() {
6 int A;
7 A::n = 42; // OK
8 A b; // ill-formed: A does not name a type
9 }
...


