aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-49776.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-49776.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-49776.C17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-49776.C b/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-49776.C
deleted file mode 100644
index 3fe3dcb86..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/constexpr-49776.C
+++ /dev/null
@@ -1,17 +0,0 @@
-// PR c++/49776
-// { dg-options -std=c++0x }
-
-struct s
-{
- int i[1];
-
- template<class... Types>
- constexpr s(Types... args)
- : i{args...} // { dg-error "cannot convert" }
- { }
-};
-
-int main()
-{
- s test = nullptr;
-}