* g++.dg/tc1/dr176.C: Add missing semicolon (typo).
authorgiovannibajo <giovannibajo@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Feb 2004 15:33:49 +0000 (15:33 +0000)
committergiovannibajo <giovannibajo@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Feb 2004 15:33:49 +0000 (15:33 +0000)
* g++.dg/tc1/dr101.C, g++.dg/tc1/dr135.C, g++.dg/tc1/dr142.C,
g++.dg/tc1/dr152.C, g++.dg/tc1/dr159.C, g++.dg/tc1/dr161.C,
g++.dg/tc1/dr166.C, g++.dg/tc1/dr176.C, g++.dg/tc1/dr193.C,
g++.dg/tc1/dr194.C, g++.dg/tc1/dr217.C, g++.dg/tc1/dr56.C,
g++.dg/tc1/dr68.C, g++.dg/tc1/dr76.C, g++.dg/tc1/dr80.C,
g++.dg/tc1/dr94.C: Fix line terminator.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77950 138bc75d-0d04-0410-961f-82ee72b054a4

18 files changed:
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/tc1/dr101.C
gcc/testsuite/g++.dg/tc1/dr135.C
gcc/testsuite/g++.dg/tc1/dr142.C
gcc/testsuite/g++.dg/tc1/dr152.C
gcc/testsuite/g++.dg/tc1/dr159.C
gcc/testsuite/g++.dg/tc1/dr161.C
gcc/testsuite/g++.dg/tc1/dr166.C
gcc/testsuite/g++.dg/tc1/dr176.C
gcc/testsuite/g++.dg/tc1/dr193.C
gcc/testsuite/g++.dg/tc1/dr194.C
gcc/testsuite/g++.dg/tc1/dr217.C
gcc/testsuite/g++.dg/tc1/dr48.C
gcc/testsuite/g++.dg/tc1/dr56.C
gcc/testsuite/g++.dg/tc1/dr68.C
gcc/testsuite/g++.dg/tc1/dr76.C
gcc/testsuite/g++.dg/tc1/dr80.C
gcc/testsuite/g++.dg/tc1/dr94.C

index 90b5678..2f5a956 100644 (file)
@@ -1,3 +1,13 @@
+2004-02-17  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
+
+       * g++.dg/tc1/dr176.C: Add missing semicolon (typo).
+       * g++.dg/tc1/dr101.C, g++.dg/tc1/dr135.C, g++.dg/tc1/dr142.C,
+       g++.dg/tc1/dr152.C, g++.dg/tc1/dr159.C, g++.dg/tc1/dr161.C,
+       g++.dg/tc1/dr166.C, g++.dg/tc1/dr176.C, g++.dg/tc1/dr193.C,
+       g++.dg/tc1/dr194.C, g++.dg/tc1/dr217.C, g++.dg/tc1/dr56.C,
+       g++.dg/tc1/dr68.C, g++.dg/tc1/dr76.C, g++.dg/tc1/dr80.C,
+       g++.dg/tc1/dr94.C: Fix line terminator.
+
 2004-02-16  Geoffrey Keating  <geoffk@apple.com>
 
        * gcc.c-torture/compile/20040216-1.c: New.
index 79cb1b0..ede2215 100644 (file)
@@ -1,31 +1,31 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR101: Redeclaration of extern "C" names via using-declarations \r
-\r
-namespace Test1 {\r
-\r
-  typedef unsigned int X;\r
-  extern "C" void f1();\r
-  namespace N {\r
-    typedef unsigned int X;\r
-    extern "C" void f1();\r
-  }\r
-  using N::f1; // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }\r
-  using N::X;  // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }\r
-}\r
-\r
-\r
-namespace Test2 {\r
-\r
-  typedef unsigned int X;\r
-  extern "C" int f2();\r
-  namespace N {\r
-    typedef unsigned int X;\r
-    extern "C" int f2();\r
-  }\r
-  using namespace N;\r
-  int i = f2(); // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }\r
-  X x;          // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" { xfail *-*-* } }\r
-\r
-}\r
-\r
+// DR101: Redeclaration of extern "C" names via using-declarations 
+
+namespace Test1 {
+
+  typedef unsigned int X;
+  extern "C" void f1();
+  namespace N {
+    typedef unsigned int X;
+    extern "C" void f1();
+  }
+  using N::f1; // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
+  using N::X;  // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
+}
+
+
+namespace Test2 {
+
+  typedef unsigned int X;
+  extern "C" int f2();
+  namespace N {
+    typedef unsigned int X;
+    extern "C" int f2();
+  }
+  using namespace N;
+  int i = f2(); // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" }
+  X x;          // { dg-bogus "" "redeclaration through 'using' should not be ambiguous" { xfail *-*-* } }
+
+}
+
index 91a7727..beed8cd 100644 (file)
@@ -1,8 +1,8 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR135: Class type in in-class member function definitions \r
-\r
-struct S {\r
-  S f() { return S(); }  // { dg-bogus "" "incomplete class type is allowed as return type" }\r
-  void g(S) { }          // { dg-bogus "" "incomplete class type is allowed as parameter type" }\r
-};\r
+// DR135: Class type in in-class member function definitions 
+
+struct S {
+  S f() { return S(); }  // { dg-bogus "" "incomplete class type is allowed as return type" }
+  void g(S) { }          // { dg-bogus "" "incomplete class type is allowed as parameter type" }
+};
index 6043c3d..c49f4dd 100644 (file)
@@ -1,32 +1,32 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR142: Injection-related errors in access example \r
-\r
-class B {                 // { dg-error "inaccessible" }\r
-public:\r
-  int mi;                 // { dg-error "inaccessible" }\r
-  static int si;          // { dg-error "inaccessible" }\r
-};\r
-\r
-class D: private B {\r
-};\r
-\r
-class DD: public D {\r
-  void f();\r
-};\r
-\r
-void DD::f() {\r
-  mi = 3;          // { dg-error "within this context" "" }\r
-  si = 3;          // { dg-error "within this context" "" }\r
-  ::B b;\r
-  b.mi = 3;\r
-  b.si = 3;\r
-  ::B::si = 3;\r
-  ::B* bp1 = this;        // { dg-error "inaccessible base" "" }\r
-  ::B* bp2 = (::B*)this;\r
-  bp2->mi = 3;\r
-\r
-\r
-  B b2;                   // { dg-error "within this context" "" }\r
-  B::si = 3;              // { dg-error "within this context" "" }\r
-}\r
+// DR142: Injection-related errors in access example 
+
+class B {                 // { dg-error "inaccessible" }
+public:
+  int mi;                 // { dg-error "inaccessible" }
+  static int si;          // { dg-error "inaccessible" }
+};
+
+class D: private B {
+};
+
+class DD: public D {
+  void f();
+};
+
+void DD::f() {
+  mi = 3;          // { dg-error "within this context" "" }
+  si = 3;          // { dg-error "within this context" "" }
+  ::B b;
+  b.mi = 3;
+  b.si = 3;
+  ::B::si = 3;
+  ::B* bp1 = this;        // { dg-error "inaccessible base" "" }
+  ::B* bp2 = (::B*)this;
+  bp2->mi = 3;
+
+
+  B b2;                   // { dg-error "within this context" "" }
+  B::si = 3;              // { dg-error "within this context" "" }
+}
index 23c73b5..1b6dd87 100644 (file)
@@ -1,36 +1,36 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR152: explicit copy constructors \r
+// DR152: explicit copy constructors 
 
-namespace N1 {\r
-  struct X {\r
-    X();\r
-    explicit X(const X&);\r
-  };\r
-  void f(X);\r
-  int foo() \r
-  { \r
-    X x; \r
-    f(x);     // { dg-error "" "" }\r
-  }\r
+namespace N1 {
+  struct X {
+    X();
+    explicit X(const X&);
+  };
+  void f(X);
+  int foo() 
+  { 
+    X x; 
+    f(x);     // { dg-error "" "" }
+  }
 }
 
-namespace N2 {\r
-  template <class T>\r
-  struct X {\r
-    X();\r
-    explicit X(const X&);\r
-  };\r
-\r
-  template <class T>\r
-  void f(T ) {}\r
-  \r
-  template <class T>\r
-  int foo() \r
-  { \r
-    X<T> x; \r
-    N2::f(x);   // { dg-error "" "" }\r
-  }\r
-\r
-  template int foo<float>();  // { dg-error "instantiated from here" }\r
+namespace N2 {
+  template <class T>
+  struct X {
+    X();
+    explicit X(const X&);
+  };
+
+  template <class T>
+  void f(T ) {}
+  
+  template <class T>
+  int foo() 
+  { 
+    X<T> x; 
+    N2::f(x);   // { dg-error "" "" }
+  }
+
+  template int foo<float>();  // { dg-error "instantiated from here" }
 }
index 6d04921..74d23f1 100644 (file)
@@ -1,12 +1,12 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR159: Namespace qualification in declarators \r
-\r
-namespace N {\r
-  namespace M {\r
-    void f();\r
-    void g();\r
-  }\r
-  void M::f(){}\r
-  void N::M::g(){}\r
-}\r
+// DR159: Namespace qualification in declarators 
+
+namespace N {
+  namespace M {
+    void f();
+    void g();
+  }
+  void M::f(){}
+  void N::M::g(){}
+}
index f089353..49f679a 100644 (file)
@@ -1,50 +1,50 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR161: Access to protected nested type \r
-\r
-namespace N1 {\r
-  struct A \r
-  {\r
-  protected:\r
-    typedef int type;\r
-  };\r
-\r
-  struct B : public A\r
-  {\r
-    void test(void)\r
-    {\r
-      A::type t;\r
-    }\r
-\r
-    friend void ftest(void)\r
-    {\r
-      A::type t;\r
-    }\r
-  };\r
-}\r
-\r
-\r
-namespace N2 {\r
-  template <class T>\r
-  struct A \r
-  {\r
-  protected:\r
-    typedef int type;\r
-  };\r
-\r
-  template <class T>\r
-  struct B : public A<T>\r
-  {\r
-    void test(B b)\r
-    {\r
-      typename A<T>::type t;\r
-    }\r
-\r
-    friend void ftest(B b)\r
-    {\r
-      typename A<T>::type t;\r
-    }\r
-  };\r
-\r
-  template struct B<void>;\r
-}\r
+// DR161: Access to protected nested type 
+
+namespace N1 {
+  struct A 
+  {
+  protected:
+    typedef int type;
+  };
+
+  struct B : public A
+  {
+    void test(void)
+    {
+      A::type t;
+    }
+
+    friend void ftest(void)
+    {
+      A::type t;
+    }
+  };
+}
+
+
+namespace N2 {
+  template <class T>
+  struct A 
+  {
+  protected:
+    typedef int type;
+  };
+
+  template <class T>
+  struct B : public A<T>
+  {
+    void test(B b)
+    {
+      typename A<T>::type t;
+    }
+
+    friend void ftest(B b)
+    {
+      typename A<T>::type t;
+    }
+  };
+
+  template struct B<void>;
+}
index 6f2a26d..cc4631a 100644 (file)
@@ -1,60 +1,60 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR166: Friend declarations of template-ids \r
-\r
-namespace N {\r
-  template <class T> void f(T);\r
-  void g();\r
-\r
-  namespace M {\r
-    class A {\r
-      friend void f<int>(int); // N::f\r
-      static int x;   // { dg-error "private" }\r
-    };\r
-    \r
-    class B {\r
-      template <class T> friend void f(T);  // M::f\r
-      static int x;   // { dg-error "private" }\r
-    };\r
-\r
-    class C {\r
-      friend void g(); // M::g\r
-      static int x;   // { dg-error "private" }\r
-    };\r
-\r
-    template <class T> void f(T)  // will be instantiated as f<long>\r
-    {\r
-      M::A::x = 0;    // { dg-error "within this context" }\r
-      M::B::x = 0;\r
-    }\r
-    template <> void f<int>(int)\r
-    { M::A::x = 0; }      // { dg-error "within this context" }\r
-    template <> void f<double>(double )\r
-    { \r
-      M::B::x = 0; \r
-      M::f<long>(0);   // { dg-error "instantiated" }\r
-    }\r
-\r
-    void g(void)\r
-    { M::C::x = 0; }\r
-  }\r
-\r
-  template <class T> void f(T)  // will be instantiated as f<long>\r
-  { \r
-    M::A::x = 0;       // { dg-error "within this context" }\r
-    M::B::x = 0;       // { dg-error "within this context" }\r
-  }\r
-\r
-  template <> void f<int>(int )\r
-  { \r
-    N::f<long>(0);        // { dg-error "instantiated" }\r
-    M::A::x = 0; \r
-    M::B::x = 0;       // { dg-error "within this context" }\r
-  }\r
-\r
-  template <> void f<char>(char )\r
-  { M::A::x = 0; }      // { dg-error "within this context" }\r
-\r
-  void g(void)\r
-  { M::C::x = 0; }      // { dg-error "within this context" }\r
-}\r
+// DR166: Friend declarations of template-ids 
+
+namespace N {
+  template <class T> void f(T);
+  void g();
+
+  namespace M {
+    class A {
+      friend void f<int>(int); // N::f
+      static int x;   // { dg-error "private" }
+    };
+    
+    class B {
+      template <class T> friend void f(T);  // M::f
+      static int x;   // { dg-error "private" }
+    };
+
+    class C {
+      friend void g(); // M::g
+      static int x;   // { dg-error "private" }
+    };
+
+    template <class T> void f(T)  // will be instantiated as f<long>
+    {
+      M::A::x = 0;    // { dg-error "within this context" }
+      M::B::x = 0;
+    }
+    template <> void f<int>(int)
+    { M::A::x = 0; }      // { dg-error "within this context" }
+    template <> void f<double>(double )
+    { 
+      M::B::x = 0; 
+      M::f<long>(0);   // { dg-error "instantiated" }
+    }
+
+    void g(void)
+    { M::C::x = 0; }
+  }
+
+  template <class T> void f(T)  // will be instantiated as f<long>
+  { 
+    M::A::x = 0;       // { dg-error "within this context" }
+    M::B::x = 0;       // { dg-error "within this context" }
+  }
+
+  template <> void f<int>(int )
+  { 
+    N::f<long>(0);        // { dg-error "instantiated" }
+    M::A::x = 0; 
+    M::B::x = 0;       // { dg-error "within this context" }
+  }
+
+  template <> void f<char>(char )
+  { M::A::x = 0; }      // { dg-error "within this context" }
+
+  void g(void)
+  { M::C::x = 0; }      // { dg-error "within this context" }
+}
index b308ad8..aad805b 100644 (file)
@@ -1,29 +1,29 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR176: Name injection and templates \r
-\r
-namespace N1 {\r
-  template <class T> struct Base {\r
-    Base* p;\r
-    Base<T*>* p2;\r
-    ::Base* p3;    // { dg-error "" "" }\r
-  };\r
-\r
-  template <class T> struct Derived: public Base<T> {\r
-    Base* p;     // { dg-bogus "" "injected class name in derived classes" { xfail *-*-* } }\r
-    Base<T*>* p2;\r
-    typename Derived::Base* p3;   // { dg-bogus "" "injected class name in derived classes" { xfail *-*-* } }\r
-  };\r
-\r
-  template struct Derived<void>;  // { dg-bogus "instantiated from here" "everything should be looked up at parsing time (after DR224)" { xfail *-*-* } }\r
-}\r
-\r
-\r
-namespace N2 {\r
-  template <class T> struct Base {};\r
-  template <class T> struct Derived: public Base<T> {\r
-    typename Derived::template Base<double>* p1;  // { dg-bogus "" "" { xfail *-*-* } }\r
-  }\r
-\r
-  template struct Derived<void>;\r
-}\r
+// DR176: Name injection and templates 
+
+namespace N1 {
+  template <class T> struct Base {
+    Base* p;
+    Base<T*>* p2;
+    ::Base* p3;    // { dg-error "" "" }
+  };
+
+  template <class T> struct Derived: public Base<T> {
+    Base* p;     // { dg-bogus "" "injected class name in derived classes" { xfail *-*-* } }
+    Base<T*>* p2;
+    typename Derived::Base* p3;   // { dg-bogus "" "injected class name in derived classes" { xfail *-*-* } }
+  };
+
+  template struct Derived<void>;  // { dg-bogus "instantiated from here" "everything should be looked up at parsing time (after DR224)" { xfail *-*-* } }
+}
+
+
+namespace N2 {
+  template <class T> struct Base {};
+  template <class T> struct Derived: public Base<T> {
+    typename Derived::template Base<double>* p1;  // { dg-bogus "" "" { xfail *-*-* } }
+  };
+
+  template struct Derived<void>;
+}
index 1319b88..5855593 100644 (file)
@@ -1,72 +1,72 @@
 // { dg-do run }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR193: Order of destruction of local automatics of destructor \r
-\r
-extern "C" void abort(void);\r
-\r
-namespace N1 {\r
-  bool a_done = false;\r
-  struct A\r
-  { \r
-    ~A()\r
-    {\r
-      a_done = true;\r
-    }\r
-  };\r
-\r
-  struct B\r
-  { \r
-    ~B()\r
-    {\r
-      if (!a_done)\r
-        abort();\r
-    }\r
-  };\r
-\r
-  struct C {\r
-    B x;\r
-    ~C() {\r
-      A y;\r
-    };\r
-  };\r
-}\r
-\r
-\r
-namespace N2 {\r
-  bool a_done = false;\r
-\r
-  template <class>\r
-  struct A\r
-  { \r
-    ~A()\r
-    {\r
-      a_done = true;\r
-    }\r
-  };\r
-\r
-  template <class>\r
-  struct B\r
-  { \r
-    ~B()\r
-    {\r
-      if (!a_done)\r
-        abort();\r
-    }\r
-  };\r
-\r
-  template <class T>\r
-  struct C {\r
-    B<T> x;\r
-    ~C() {\r
-      A<T> y;\r
-    };\r
-  };\r
-}\r
-\r
-\r
-int main(void)\r
-{\r
-  N1::C c1;\r
-  N2::C<void> c2;\r
-  return 0;\r
-}\r
+// DR193: Order of destruction of local automatics of destructor 
+
+extern "C" void abort(void);
+
+namespace N1 {
+  bool a_done = false;
+  struct A
+  { 
+    ~A()
+    {
+      a_done = true;
+    }
+  };
+
+  struct B
+  { 
+    ~B()
+    {
+      if (!a_done)
+        abort();
+    }
+  };
+
+  struct C {
+    B x;
+    ~C() {
+      A y;
+    };
+  };
+}
+
+
+namespace N2 {
+  bool a_done = false;
+
+  template <class>
+  struct A
+  { 
+    ~A()
+    {
+      a_done = true;
+    }
+  };
+
+  template <class>
+  struct B
+  { 
+    ~B()
+    {
+      if (!a_done)
+        abort();
+    }
+  };
+
+  template <class T>
+  struct C {
+    B<T> x;
+    ~C() {
+      A<T> y;
+    };
+  };
+}
+
+
+int main(void)
+{
+  N1::C c1;
+  N2::C<void> c2;
+  return 0;
+}
index 3491468..3ed1300 100644 (file)
@@ -3,14 +3,14 @@
 // DR194: Identifying constructors 
 
 struct A
-{\r
-  inline explicit A();\r
+{
+  inline explicit A();
 };
 
 template <class>
 struct B
-{\r
-  inline explicit B();\r
+{
+  inline explicit B();
 };
 
 template struct B<void>;
index 1fb3ce2..cfa2803 100644 (file)
@@ -1,14 +1,14 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR217: Default arguments for non-template member functions of class \r
-//  templates \r
-\r
-template <class T>\r
-struct S\r
-{\r
-  void foo (int);\r
-};\r
-\r
-template <class T>\r
-void S<T>::foo (int = 0)  // { dg-error "" "default arguments for parameters of member functions of class templates can be specified in the initial declaration only" { xfail *-*-* } }\r
-{ }\r
+// DR217: Default arguments for non-template member functions of class 
+//  templates 
+
+template <class T>
+struct S
+{
+  void foo (int);
+};
+
+template <class T>
+void S<T>::foo (int = 0)  // { dg-error "" "default arguments for parameters of member functions of class templates can be specified in the initial declaration only" { xfail *-*-* } }
+{ }
index 16732d2..19c1738 100644 (file)
@@ -1,13 +1,13 @@
 // { dg-do link }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR48: Definitions of unused static members \r
-\r
-struct A {\r
-  static const int size = 10;\r
-  int array[size];\r
-};\r
-\r
-int main() {\r
-  A a;\r
-  return 0;\r
-}\r
+// DR48: Definitions of unused static members 
+
+struct A {
+  static const int size = 10;
+  int array[size];
+};
+
+int main() {
+  A a;
+  return 0;
+}
index 1451ce8..a5caea8 100644 (file)
@@ -1,12 +1,12 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR56: Redeclaring typedefs within classes \r
-\r
-class X { \r
-  typedef int I; \r
-  typedef int I;  // { dg-error "" "Cannot redeclare a typedef in a class scope" { xfail *-*-* } }\r
-};\r
-\r
-// In non-class scope, they are allowed.\r
-typedef int A;\r
-typedef int A;\r
+// DR56: Redeclaring typedefs within classes 
+
+class X { 
+  typedef int I; 
+  typedef int I;  // { dg-error "" "Cannot redeclare a typedef in a class scope" { xfail *-*-* } }
+};
+
+// In non-class scope, they are allowed.
+typedef int A;
+typedef int A;
index 60b2c6b..253f049 100644 (file)
@@ -1,20 +1,20 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR68: Grammar does not allow "friend class A<int>;" \r
-\r
-namespace A{\r
-  class B{};\r
-}\r
-\r
-namespace B{\r
-  class A{};\r
-  class C{\r
-    friend class ::A::B;\r
-  };\r
-}\r
-\r
-\r
-template <typename> class K;\r
-class J {\r
-  friend class K<int>;\r
-};\r
+// DR68: Grammar does not allow "friend class A<int>;" 
+
+namespace A{
+  class B{};
+}
+
+namespace B{
+  class A{};
+  class C{
+    friend class ::A::B;
+  };
+}
+
+
+template <typename> class K;
+class J {
+  friend class K<int>;
+};
index dfe7ecf..6d3d1c1 100644 (file)
@@ -1,8 +1,8 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR76: Are const volatile variables considered "constant expressions"? \r
-\r
-volatile const int a = 5;\r
-\r
-template <int> struct K;\r
-template struct K<a>;  // { dg-error "non-constant" }\r
+// DR76: Are const volatile variables considered "constant expressions"? 
+
+volatile const int a = 5;
+
+template <int> struct K;
+template struct K<a>;  // { dg-error "non-constant" }
index e7d3731..2327428 100644 (file)
@@ -1,53 +1,53 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR80: Class members with same name as class \r
-\r
-struct A \r
-{\r
-  int A;\r
-};\r
-\r
-struct A2\r
-{\r
-  static int A2;  // { dg-error "same name as" }\r
-};\r
-\r
-\r
-template <class>\r
-struct A3\r
-{\r
-  int A3;\r
-};\r
-\r
-template <class>\r
-struct A4\r
-{\r
-  static int A4;  // { dg-error "same name as" }\r
-};\r
-\r
-\r
-struct B\r
-{\r
-  B();\r
-  int B;  // { dg-error "same name as" }\r
-};\r
-\r
-struct B2\r
-{\r
-  B2();\r
-  static int B2;  // { dg-error "same name as" }\r
-};\r
-\r
-template <class>\r
-struct B3\r
-{\r
-  B3();\r
-  int B3;  // { dg-error "same name as" "this error should appear at parsing time" { xfail *-*-* } }\r
-};\r
-\r
-template <class>\r
-struct B4\r
-{\r
-  B4();\r
-  static int B4;  // { dg-error "same name as" }\r
-};\r
+// DR80: Class members with same name as class 
+
+struct A 
+{
+  int A;
+};
+
+struct A2
+{
+  static int A2;  // { dg-error "same name as" }
+};
+
+
+template <class>
+struct A3
+{
+  int A3;
+};
+
+template <class>
+struct A4
+{
+  static int A4;  // { dg-error "same name as" }
+};
+
+
+struct B
+{
+  B();
+  int B;  // { dg-error "same name as" }
+};
+
+struct B2
+{
+  B2();
+  static int B2;  // { dg-error "same name as" }
+};
+
+template <class>
+struct B3
+{
+  B3();
+  int B3;  // { dg-error "same name as" "this error should appear at parsing time" { xfail *-*-* } }
+};
+
+template <class>
+struct B4
+{
+  B4();
+  static int B4;  // { dg-error "same name as" }
+};
index 3909c65..97cf0c2 100644 (file)
@@ -1,9 +1,9 @@
 // { dg-do compile }
 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
-// DR94: Inconsistencies in the descriptions of constant expressions \r
-\r
-struct S {\r
-  static const int c = 5;\r
-};\r
-int a[S::c];\r
-\r
+// DR94: Inconsistencies in the descriptions of constant expressions 
+
+struct S {
+  static const int c = 5;
+};
+int a[S::c];
+