cxx/test/utilities/meta/meta.trans/meta.trans.other/enable_if.fail.cpp
2010-05-11 21:36:01 +00:00

1 line
454 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// type_traits
// enable_if
#include <type_traits>
int main()
{
typedef std::enable_if<false>::type A;
}