| //===----------------------------------------------------------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| // template <class T, class Container, class Compare> |
| // void swap(priority_queue<T, Container, Compare>& x, |
| // priority_queue<T, Container, Compare>& y); |
| std::priority_queue<int> q1; |
| std::priority_queue<int> q2; |