opnsense-src/test/libcxx/thread/thread.mutex/thread_safety_missing_unlock.fail.cpp

24 lines
614 B
C++
Raw Normal View History

2015-09-06 14:46:46 -04:00
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
2015-09-06 14:46:46 -04:00
// UNSUPPORTED: libcpp-has-no-threads
// REQUIRES: thread-safety
2015-09-06 14:46:46 -04:00
// <mutex>
#define _LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS
2015-09-06 14:46:46 -04:00
#include <mutex>
std::mutex m;
int main() {
m.lock();
} // expected-error {{mutex 'm' is still held at the end of function}}