blob: 91ef5c970a224fc5f6933e88b28486eed57bad85 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03, c++11, c++14
// <any>
// [Note any is a not a literal type --end note]
#include <any>
#include <type_traits>
int main () {
static_assert(!std::is_literal_type<std::any>::value, "");
}