13 lines
250 B
C++
13 lines
250 B
C++
|
// RUN: %clang_cc1 -std=c++11 -verify %s -Wno-tautological-compare
|
||
|
|
||
|
template <typename T>
|
||
|
void f(int i, float f, bool b, char c, int* pi, T* pt) {
|
||
|
(void)!i;
|
||
|
(void)!f;
|
||
|
(void)!b;
|
||
|
(void)!c;
|
||
|
(void)!pi;
|
||
|
(void)!pt;
|
||
|
}
|
||
|
// expected-no-diagnostics
|