blob: f5e69173eb1ec6cd0d785d6a929d4d8a9121cc9a [file] [log] [blame]
Howard Hinnantbbdf6692013-07-04 19:46:35 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <map>
11
12// template <class Key, class T, class Compare = less<Key>,
13// class Allocator = allocator<pair<const Key, T>>>
14// class map
15
16// http://llvm.org/bugs/show_bug.cgi?id=16538
17
18#include <map>
19
20struct Key {
21 template <typename T> Key(const T&) {}
22 bool operator< (const Key&) const { return false; }
23};
24
25int
26main()
27{
28 std::map<Key, int>::iterator it = std::map<Key, int>().find(Key(0));
29}