This patch adds a separate `extensions` directory, since there are quite a few extensions in libc++ that aren't necessarily libc++-specific. For example, the tests currently in `libcxx/test/libcxx/extensions` should also pass with libstdc++, since they originally added the extension. This also "documents" what users are allowed to rely on and what parts are just libc++ tests to make sure our implementation is behaving as we expect, which may be subject to change. This patch also formats the tests and refactors `.fail.cpp` tests to `.verify.cpp` tests.
21 lines
739 B
C++
21 lines
739 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ADDITIONAL_COMPILE_FLAGS: -Wno-deprecated
|
|
|
|
#include <ext/hash_map>
|
|
|
|
int main(int, char**) {
|
|
__gnu_cxx::hash_map<int, int> m;
|
|
m[1] = 1;
|
|
const __gnu_cxx::hash_map<int, int>& cm = m;
|
|
cm.find(1)->second = 2; // expected-error {{cannot assign to return value because function 'operator->' returns a const value}}
|
|
|
|
return 0;
|
|
}
|