blob: dc4a07405ff60c38dcf03b0fab0853dd5937b66a [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.
//
//===----------------------------------------------------------------------===//
// <mutex>
// struct once_flag;
// constexpr once_flag();
#include <mutex>
int main()
{
std::once_flag f;
}