summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/pr25811.C
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/g++.dg/init/pr25811.C
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/g++.dg/init/pr25811.C')
-rw-r--r--gcc/testsuite/g++.dg/init/pr25811.C195
1 files changed, 195 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/init/pr25811.C b/gcc/testsuite/g++.dg/init/pr25811.C
new file mode 100644
index 000000000..c906a9bbd
--- /dev/null
+++ b/gcc/testsuite/g++.dg/init/pr25811.C
@@ -0,0 +1,195 @@
+// PR c++/25811
+// { dg-do compile }
+
+struct A1
+{
+ int const j; // { dg-message "should be initialized" }
+};
+
+struct A2
+{
+ int const volatile i; // { dg-message "should be initialized" }
+};
+
+struct A3
+{
+ int& ref; // { dg-message "should be initialized" }
+};
+
+struct A4
+{
+ int const& ref; // { dg-message "should be initialized" }
+};
+
+struct A5
+{
+ int& ref; // { dg-message "should be initialized" }
+ int const i; // { dg-message "should be initialized" }
+};
+
+template <class T> struct S1
+{
+ T const i; // { dg-message "should be initialized" }
+};
+
+template <class T> struct S2
+{
+ T const volatile i; // { dg-message "should be initialized" }
+};
+
+template <class T> struct S3
+{
+ T& ref; // { dg-message "should be initialized" }
+};
+
+template <class T> struct S4
+{
+ T const i; // { dg-message "should be initialized" }
+ T& ref; // { dg-message "should be initialized" }
+};
+
+struct X
+{
+ X () : c (0), r (c) {}
+ int const c;
+ int const& r;
+};
+
+struct Y11
+{
+ int const i; // { dg-message "should be initialized" }
+};
+
+struct Y1
+{
+ Y11 a[1];
+};
+
+struct Y22
+{
+ int& ref; // { dg-message "should be initialized" }
+};
+
+struct Y2
+{
+ Y22 a[1];
+};
+
+struct Z1
+{
+ int const i; // { dg-message "should be initialized" }
+};
+
+struct Z2
+{
+ int& ref; // { dg-message "should be initialized" }
+};
+
+struct Z3
+{
+ int const i; // { dg-message "should be initialized" }
+};
+
+struct Z4
+{
+ int& ref; // { dg-message "should be initialized" }
+};
+
+struct Z5
+{
+ int i;
+};
+
+struct Z
+{
+ Z1 z1;
+ Z2 z2;
+ Z3 z3;
+ Z4 z4;
+ Z5 z5;
+};
+
+union U
+{
+ int const i; // { dg-message "should be initialized" }
+};
+
+void f1 ()
+{
+ new A1; // { dg-error "uninitialized const member" }
+}
+
+void f2 ()
+{
+ new A2; // { dg-error "uninitialized const member" }
+}
+
+void f3 ()
+{
+ new A3; // { dg-error "uninitialized reference member" }
+}
+
+void f4 ()
+{
+ new A4; // { dg-error "uninitialized reference member" }
+}
+
+void f5 ()
+{
+ new A5; // { dg-error "uninitialized reference member|uninitialized const member" }
+}
+
+void f6 ()
+{
+ new S1<int>; // { dg-error "uninitialized const member" }
+}
+
+void f7 ()
+{
+ new S2<int>; // { dg-error "uninitialized const member" }
+}
+
+void f8 ()
+{
+ new S3<int>; // { dg-error "uninitialized reference member" }
+}
+
+void f9 ()
+{
+ new S4<int>; // { dg-error "uninitialized reference member|uninitialized const member" }
+}
+
+void f10 ()
+{
+ new X;
+}
+
+void f11 ()
+{
+ new A1[1]; // { dg-error "uninitialized const member" }
+}
+
+void f12 ()
+{
+ new A3[1]; // { dg-error "uninitialized reference member" }
+}
+
+void f13 ()
+{
+ new Y1; // { dg-error "uninitialized const member" }
+}
+
+void f14 ()
+{
+ new Y2; // { dg-error "uninitialized reference member" }
+}
+
+void f15 ()
+{
+ new Z; // { dg-error "uninitialized reference member|uninitialized const member" }
+}
+
+void f16 ()
+{
+ new U; // { dg-error "uninitialized const member" }
+}