2013-07-23 17:05:24 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include <string>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
#if _LIBCPP_STD_VER > 11
|
2013-08-07 19:39:48 +00:00
|
|
|
std::string foo = ""s; // should fail w/conversion operator not found
|
2013-07-23 17:05:24 +00:00
|
|
|
#else
|
|
|
|
#error
|
|
|
|
#endif
|
|
|
|
}
|