2010-08-22 08:59:46 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-17 06:09:02 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-22 08:59:46 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// enable_if
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
typedef std::enable_if<false>::type A;
|
|
|
|
}
|