summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers/associative/multiset/incomplete_type.pass.cpp
blob: 71166b2ecd37f19d4ef45b0d3d9d783e8c6e0b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// <set>

// Check that std::multiset and its iterators can be instantiated with an incomplete
// type.

#include <set>

struct A {
    typedef std::multiset<A> Set;
    int data;
    Set m;
    Set::iterator it;
    Set::const_iterator cit;
};

inline bool operator==(A const& L, A const& R) { return &L == &R; }
inline bool operator<(A const& L, A const& R)  { return L.data < R.data; }
int main() {
    A a;
}
OpenPOWER on IntegriCloud