blob: 84e23716a99718146e20f755052ead14e78cabd0 [file] [log] [blame]
Douglas Gregora9333192010-05-08 17:41:32 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3template<typename T>
4const T& min(const T&, const T&); // expected-note{{candidate template ignored: deduced conflicting types for parameter 'T' ('int' vs. 'long')}}
5
6void test_min() {
7 (void)min(1, 2l); // expected-error{{no matching function for call to 'min'}}
8}