blob: 66b445e4d83b63a1583873e00674213a2e977241 [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
David Blaikie5f31f082011-10-18 05:54:07 +00002// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98 -Wno-c++11-extensions
Richard Smithad762fc2011-04-14 22:09:26 +00003
4struct S {
5 int *begin();
6 int *end();
7};
8
9struct T {
10};
11
12struct Range {};
13int begin(Range); // expected-note {{not viable}}
14int end(Range);
15
16namespace NS {
17 struct ADL {};
18 struct iter {
19 int operator*();
20 bool operator!=(iter);
21 void operator++();
22 };
23 iter begin(ADL); // expected-note {{not viable}}
24 iter end(ADL);
25
26 struct NoADL {};
27}
28NS::iter begin(NS::NoADL); // expected-note {{not viable}}
29NS::iter end(NS::NoADL);
30
31void f() {
32 int a[] = {1, 2, 3};
33 for (auto b : S()) {} // ok
Sam Panzere1715b62012-08-21 00:52:01 +000034 for (auto b : T()) {} // expected-error {{invalid range expression of type 'T'}}
Richard Smithad762fc2011-04-14 22:09:26 +000035 for (auto b : a) {} // ok
36 for (int b : NS::ADL()) {} // ok
Sam Panzere1715b62012-08-21 00:52:01 +000037 for (int b : NS::NoADL()) {} // expected-error {{invalid range expression of type 'NS::NoADL'}}
Richard Smithad762fc2011-04-14 22:09:26 +000038}
Eli Friedman9490ab42011-12-20 01:50:37 +000039
40void PR11601() {
41 void (*vv[])() = {PR11601, PR11601, PR11601};
42 for (void (*i)() : vv) i();
43}