view libstdc++-v3/testsuite/20_util/is_null_pointer/value.cc @ 136:4627f235cf2a

fix c-next example
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:11:56 +0900
parents 84e7813d76e9
children 1830386684a0
line wrap: on
line source

// { dg-do compile { target c++11 } }

// 2013-05-02  Paolo Carlini  <pcarlini@suse.de>
//
// Copyright (C) 2013-2018 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
// 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/>.

#include <type_traits>
#include <testsuite_tr1.h>

void test01()
{
  using std::is_null_pointer;
  using namespace __gnu_test;

  static_assert(test_category<is_null_pointer, std::nullptr_t>(true), "");

  static_assert(test_category<is_null_pointer, int>(false), "");
  static_assert(test_category<is_null_pointer, float>(false), "");
  static_assert(test_category<is_null_pointer, EnumType>(false), "");
  static_assert(test_category<is_null_pointer, int*>(false), "");
  static_assert(test_category<is_null_pointer, int(*)(int)>(false), "");
  static_assert(test_category<is_null_pointer, int (ClassType::*)>(false), "");
  static_assert(test_category<is_null_pointer,
		int (ClassType::*) (int)>(false), "");
  static_assert(test_category<is_null_pointer, int[2]>(false), "");
  static_assert(test_category<is_null_pointer, float[][3]>(false), "");
  static_assert(test_category<is_null_pointer, EnumType[2][3][4]>(false), "");
  static_assert(test_category<is_null_pointer, int*[3]>(false), "");
  static_assert(test_category<is_null_pointer, int(*[][2])(int)>(false), "");
  static_assert(test_category<is_null_pointer,
		int (ClassType::*[2][3])>(false), "");
  static_assert(test_category<is_null_pointer,
		int (ClassType::*[][2][3]) (int)>(false), "");
  static_assert(test_category<is_null_pointer, ClassType>(false), "");
  static_assert(test_category<is_null_pointer, PODType>(false), "");
  static_assert(test_category<is_null_pointer, void>(false), "");
  static_assert(test_category<is_null_pointer, NType>(false), "");
  static_assert(test_category<is_null_pointer, TType>(false), "");
  static_assert(test_category<is_null_pointer, SLType>(false), "");
}