aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-static7.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-static7.C')
-rw-r--r--gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-static7.C10
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-static7.C b/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-static7.C
new file mode 100644
index 000000000..272ebd901
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-static7.C
@@ -0,0 +1,10 @@
+// PR c++/48945
+// { dg-do compile { target c++11 } }
+
+struct A {
+ static constexpr bool is();
+ static constexpr bool is_not();
+};
+
+constexpr bool A::is() { return true; }
+constexpr bool A::is_not() const { return true; } // { dg-error "static" }