]> 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 7b57df04d9eda1b9727b32d3090e75a05bf1bd32..da5967cfc09f03ff3f002ae808cc4068421bdff7 100644 (file)
@@ -1,6 +1,6 @@
 // { dg-do compile { target c++11 } }
 //
-// Copyright (C) 2014-2018 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
@@ -20,8 +20,6 @@
 // libstdc++/60497
 
 #include <array>
-#include <debug/array>
-#include <profile/array>
 #include <memory>
 
 struct A;
@@ -29,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));