]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/23_containers/array/element_access/60497.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / array / element_access / 60497.cc
index 14932a1b303aae1c8fa851d8b5b3d89674d8026b..da5967cfc09f03ff3f002ae808cc4068421bdff7 100644 (file)
@@ -1,7 +1,6 @@
-// { dg-options "-std=gnu++11" }
-// { dg-do compile }
+// { dg-do compile { target c++11 } }
 //
-// Copyright (C) 2014 Free Software Foundation, Inc.
+// Copyright (C) 2014-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -21,8 +20,6 @@
 // libstdc++/60497
 
 #include <array>
-#include <debug/array>
-#include <profile/array>
 #include <memory>
 
 struct A;
@@ -30,9 +27,3 @@ template<typename T> struct B { T t; };
 
 std::array<B<A>*, 1> a;
 auto b = std::get<0>(std::move(a));
-
-std::__debug::array<B<A>*, 1> c;
-auto d = std::__debug::get<0>(std::move(c));
-
-std::__profile::array<B<A>*, 1> e;
-auto f = std::__profile::get<0>(std::move(e));