Howard Hinnant | bbdf669 | 2013-07-04 19:46:35 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 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 | |
| 20 | struct Key { |
| 21 | template <typename T> Key(const T&) {} |
| 22 | bool operator< (const Key&) const { return false; } |
| 23 | }; |
| 24 | |
| 25 | int |
| 26 | main() |
| 27 | { |
| 28 | std::map<Key, int>::iterator it = std::map<Key, int>().find(Key(0)); |
| 29 | } |