blob: d85f8a84437357e70dd28f0b364fc624e6622c3c [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <atomic>
// std::atomic
// atomic& operator=( const atomic& ) volatile = delete;
#include <atomic>
void f() {
volatile std::atomic<int*> obj1;
std::atomic<int*> obj2;
obj1 = obj2; // expected-error {{overload resolution selected deleted operator '='}}
}