Retro68/gcc/libstdc++-v3/testsuite/24_iterators/range_access_cpp17_neg.cc

45 lines
1.2 KiB
C++
Raw Normal View History

2018-12-28 15:30:48 +00:00
// Copyright (C) 2017-2018 Free Software Foundation, Inc.
2012-03-27 23:13:14 +00:00
//
// 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
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
2018-12-28 15:30:48 +00:00
// { dg-options "-std=gnu++17" }
// { dg-do compile { target c++17 } }
2017-04-10 11:32:00 +00:00
#include <iterator>
2018-12-28 15:30:48 +00:00
#include <initializer_list>
2012-03-27 23:13:14 +00:00
2018-12-28 15:30:48 +00:00
void
test01()
{
struct A { bool empty() const { return true; } };
A a;
std::empty(a); // { dg-warning "ignoring return value" }
}
2012-03-27 23:13:14 +00:00
2018-12-28 15:30:48 +00:00
void
test02()
2017-04-10 11:32:00 +00:00
{
2018-12-28 15:30:48 +00:00
int a[2];
std::empty(a); // { dg-warning "ignoring return value" }
2017-04-10 11:32:00 +00:00
}
2012-03-27 23:13:14 +00:00
2017-04-10 11:32:00 +00:00
void
2018-12-28 15:30:48 +00:00
test03()
2017-04-10 11:32:00 +00:00
{
2018-12-28 15:30:48 +00:00
std::initializer_list<int> a{};
std::empty(a); // { dg-warning "ignoring return value" }
2017-04-10 11:32:00 +00:00
}