blob: b430b25e5d68376cff7dacbf1d533490275162b9 [file] [log] [blame]
Richard Smith556ef7f2013-08-19 22:06:05 +00001// RUN: %clang_cc1 -verify %s
2
3// PR16930, PR16727:
4template<class Foo>
5bool test(Foo f, int *array)
6{
7 return false && false || array[f.get()]; // expected-warning {{'&&' within '||'}} expected-note {{parentheses}}
8}