blob: edf2535ac23a2e650a6535c502f546deb422d0cd [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.
//
//===----------------------------------------------------------------------===//
// REQUIRES: thread-safety
// <mutex>
#define _LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS
#include <mutex>
std::mutex m;
int foo __attribute__((guarded_by(m)));
int main() {
std::lock_guard<std::mutex> lock(m);
foo++;
}