Thanks to visit codestin.com
Credit goes to chromium.googlesource.com

blob: 73cd354a62b1078b49fbdb2bd513a9da3a53b16a [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This is a "No Compile Test" suite.
// http://dev.chromium.org/developers/testing/no-compile-tests
#include "base/synchronization/lock.h"
namespace base {
class SynchronizedInt {
public:
void ResetWithoutCheckingAutolock() {
AutoTryLock maybe(lock);
value = 0; // expected-error {{writing variable 'value' requires holding mutex 'lock' exclusively}}
}
private:
Lock lock;
int value GUARDED_BY(lock) = 0;
};
struct StructWithLock {
Lock lock;
};
void AutoLockAsTemporary(StructWithLock* s) {
AutoLock(s->lock); // expected-error {{ignoring temporary of type 'BasicAutoLock<base::Lock>' declared with 'nodiscard' attribute}}
}
} // namespace base