]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/20_util/is_trivially_move_assignable/value.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / is_trivially_move_assignable / value.cc
index cc58674895f2b06196fa09657f6f196d1121b219..7ffa6a1e0750d743d99a83fc61741cb2b2a32801 100644 (file)
@@ -1,9 +1,8 @@
-// { dg-options "-std=gnu++11" }
-// { dg-do compile }
+// { dg-do compile { target c++11 } }
 //
 // 2014-10-09  Ville Voutilainen  <ville.voutilainen@gmail.com>
 //
-// Copyright (C) 2014-2015 Free Software Foundation, Inc.
+// Copyright (C) 2014-2020 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
@@ -89,4 +88,6 @@ void test01()
                MoveOnly>(true), "");
   static_assert(test_property<is_trivially_move_assignable, 
                MoveOnly2>(false), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               void>(false), "");
 }