Gor Nishanov | bbe1c07 | 2017-02-13 05:05:02 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -std=c++14 -fcoroutines-ts -verify %s -fcxx-exceptions |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 2 | |
Eric Fiselier | a546528 | 2016-09-29 21:47:39 +0000 | [diff] [blame] | 3 | void no_coroutine_traits_bad_arg_await() { |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 4 | co_await a; // expected-error {{include <experimental/coroutine>}} |
Eric Fiselier | a546528 | 2016-09-29 21:47:39 +0000 | [diff] [blame] | 5 | // expected-error@-1 {{use of undeclared identifier 'a'}} |
| 6 | } |
| 7 | |
| 8 | void no_coroutine_traits_bad_arg_yield() { |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 9 | co_yield a; // expected-error {{include <experimental/coroutine>}} |
Eric Fiselier | a546528 | 2016-09-29 21:47:39 +0000 | [diff] [blame] | 10 | // expected-error@-1 {{use of undeclared identifier 'a'}} |
| 11 | } |
| 12 | |
| 13 | |
| 14 | void no_coroutine_traits_bad_arg_return() { |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 15 | co_return a; // expected-error {{include <experimental/coroutine>}} |
Eric Fiselier | a546528 | 2016-09-29 21:47:39 +0000 | [diff] [blame] | 16 | // expected-error@-1 {{use of undeclared identifier 'a'}} |
| 17 | } |
| 18 | |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 19 | void no_coroutine_traits() { |
Gor Nishanov | 6dcb0eb | 2017-03-09 03:09:43 +0000 | [diff] [blame] | 20 | co_await 4; // expected-error {{std::experimental::coroutine_traits type was not found; include <experimental/coroutine>}} |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | namespace std { |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 24 | namespace experimental { |
| 25 | template <typename... T> |
| 26 | struct coroutine_traits; // expected-note {{declared here}} |
Gor Nishanov | 6dcb0eb | 2017-03-09 03:09:43 +0000 | [diff] [blame] | 27 | }} // namespace std::experimental |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 28 | |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 29 | template<typename Promise> struct coro {}; |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 30 | template <typename Promise, typename... Ps> |
| 31 | struct std::experimental::coroutine_traits<coro<Promise>, Ps...> { |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 32 | using promise_type = Promise; |
| 33 | }; |
| 34 | |
Gor Nishanov | 6dcb0eb | 2017-03-09 03:09:43 +0000 | [diff] [blame] | 35 | struct awaitable { |
| 36 | bool await_ready(); |
| 37 | template <typename F> void await_suspend(F); |
| 38 | void await_resume(); |
| 39 | } a; |
| 40 | |
| 41 | struct suspend_always { |
| 42 | bool await_ready() { return false; } |
| 43 | template <typename F> void await_suspend(F); |
| 44 | void await_resume() {} |
| 45 | }; |
| 46 | |
| 47 | struct suspend_never { |
| 48 | bool await_ready() { return true; } |
| 49 | template <typename F> void await_suspend(F); |
| 50 | void await_resume() {} |
| 51 | }; |
| 52 | |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 53 | void no_specialization() { |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 54 | co_await a; // expected-error {{implicit instantiation of undefined template 'std::experimental::coroutine_traits<void>'}} |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 57 | template <typename... T> |
| 58 | struct std::experimental::coroutine_traits<int, T...> {}; |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 59 | |
Eric Fiselier | 89bf0e7 | 2017-03-06 22:52:28 +0000 | [diff] [blame] | 60 | int no_promise_type() { // expected-error {{this function cannot be a coroutine: 'std::experimental::coroutine_traits<int>' has no member named 'promise_type'}} |
| 61 | co_await a; |
Richard Smith | 9b2f53e | 2015-11-19 02:36:35 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 64 | template <> |
| 65 | struct std::experimental::coroutine_traits<double, double> { typedef int promise_type; }; |
Eric Fiselier | 89bf0e7 | 2017-03-06 22:52:28 +0000 | [diff] [blame] | 66 | double bad_promise_type(double) { // expected-error {{this function cannot be a coroutine: 'experimental::coroutine_traits<double, double>::promise_type' (aka 'int') is not a class}} |
| 67 | co_await a; |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 70 | template <> |
| 71 | struct std::experimental::coroutine_traits<double, int> { |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 72 | struct promise_type {}; |
| 73 | }; |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 74 | double bad_promise_type_2(int) { // expected-error {{no member named 'initial_suspend'}} |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 75 | co_yield 0; // expected-error {{no member named 'yield_value' in 'std::experimental::coroutine_traits<double, int>::promise_type'}} |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Eric Fiselier | 89bf0e7 | 2017-03-06 22:52:28 +0000 | [diff] [blame] | 78 | struct promise; // expected-note {{forward declaration}} |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 79 | struct promise_void; |
| 80 | struct void_tag {}; |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 81 | template <typename... T> |
| 82 | struct std::experimental::coroutine_traits<void, T...> { using promise_type = promise; }; |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 83 | template <typename... T> |
| 84 | struct std::experimental::coroutine_traits<void, void_tag, T...> |
| 85 | { using promise_type = promise_void; }; |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 86 | |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 87 | // FIXME: This diagnostic is terrible. |
Eric Fiselier | 89bf0e7 | 2017-03-06 22:52:28 +0000 | [diff] [blame] | 88 | void undefined_promise() { // expected-error {{this function cannot be a coroutine: 'experimental::coroutine_traits<void>::promise_type' (aka 'promise') is an incomplete type}} |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 89 | co_await a; |
| 90 | } |
| 91 | |
Richard Smith | ae3d147 | 2015-11-20 22:47:10 +0000 | [diff] [blame] | 92 | struct yielded_thing { const char *p; short a, b; }; |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 93 | |
Richard Smith | d7bed4d | 2015-11-22 02:57:17 +0000 | [diff] [blame] | 94 | struct not_awaitable {}; |
| 95 | |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 96 | struct promise { |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 97 | void get_return_object(); |
| 98 | suspend_always initial_suspend(); |
| 99 | suspend_always final_suspend(); |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 100 | awaitable yield_value(int); // expected-note 2{{candidate}} |
| 101 | awaitable yield_value(yielded_thing); // expected-note 2{{candidate}} |
| 102 | not_awaitable yield_value(void()); // expected-note 2{{candidate}} |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 103 | void return_value(int); // expected-note 2{{here}} |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 104 | }; |
| 105 | |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 106 | struct promise_void { |
| 107 | void get_return_object(); |
| 108 | suspend_always initial_suspend(); |
| 109 | suspend_always final_suspend(); |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 110 | void return_void(); |
| 111 | }; |
| 112 | |
Gor Nishanov | 6dcb0eb | 2017-03-09 03:09:43 +0000 | [diff] [blame] | 113 | void no_coroutine_handle() { // expected-error {{std::experimental::coroutine_handle type was not found; include <experimental/coroutine> before defining a coroutine}} |
| 114 | //expected-note@-1 {{call to 'initial_suspend' implicitly required by the initial suspend point}} |
| 115 | co_return 5; //expected-note {{function is a coroutine due to use of 'co_return' here}} |
| 116 | } |
| 117 | |
| 118 | namespace std { |
| 119 | namespace experimental { |
| 120 | template <class PromiseType = void> |
| 121 | struct coroutine_handle { |
| 122 | static coroutine_handle from_address(void *); |
| 123 | }; |
| 124 | template <> |
| 125 | struct coroutine_handle<void> { |
| 126 | template <class PromiseType> |
| 127 | coroutine_handle(coroutine_handle<PromiseType>); |
| 128 | static coroutine_handle from_address(void *); |
| 129 | }; |
| 130 | }} // namespace std::experimental |
| 131 | |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 132 | void yield() { |
| 133 | co_yield 0; |
Richard Smith | ae3d147 | 2015-11-20 22:47:10 +0000 | [diff] [blame] | 134 | co_yield {"foo", 1, 2}; |
| 135 | co_yield {1e100}; // expected-error {{cannot be narrowed}} expected-note {{explicit cast}} expected-warning {{changes value}} expected-warning {{braces around scalar}} |
| 136 | co_yield {"foo", __LONG_LONG_MAX__}; // expected-error {{cannot be narrowed}} expected-note {{explicit cast}} expected-warning {{changes value}} |
| 137 | co_yield {"foo"}; |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 138 | co_yield "foo"; // expected-error {{no matching}} |
Richard Smith | d7bed4d | 2015-11-22 02:57:17 +0000 | [diff] [blame] | 139 | co_yield 1.0; |
| 140 | co_yield yield; // expected-error {{no member named 'await_ready' in 'not_awaitable'}} |
Richard Smith | 23da82c | 2015-11-20 22:40:06 +0000 | [diff] [blame] | 141 | } |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 142 | |
Richard Smith | 4ba6660 | 2015-11-22 07:05:16 +0000 | [diff] [blame] | 143 | void coreturn(int n) { |
| 144 | co_await a; |
| 145 | if (n == 0) |
| 146 | co_return 3; |
| 147 | if (n == 1) |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 148 | co_return {4}; // expected-warning {{braces around scalar initializer}} |
Richard Smith | 4ba6660 | 2015-11-22 07:05:16 +0000 | [diff] [blame] | 149 | if (n == 2) |
| 150 | co_return "foo"; // expected-error {{cannot initialize a parameter of type 'int' with an lvalue of type 'const char [4]'}} |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 151 | co_return 42; |
Richard Smith | 4ba6660 | 2015-11-22 07:05:16 +0000 | [diff] [blame] | 152 | } |
| 153 | |
Eric Fiselier | 8d409e8 | 2017-03-09 05:01:31 +0000 | [diff] [blame] | 154 | template <class T> |
| 155 | void co_await_non_dependent_arg(T) { |
| 156 | co_await a; |
| 157 | } |
| 158 | template void co_await_non_dependent_arg(int); |
| 159 | |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 160 | void mixed_yield() { |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 161 | co_yield 0; // expected-note {{use of 'co_yield'}} |
| 162 | return; // expected-error {{not allowed in coroutine}} |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Eric Fiselier | cac0a59 | 2017-03-11 02:35:37 +0000 | [diff] [blame^] | 165 | void mixed_yield_invalid() { |
| 166 | co_yield blah; // expected-error {{use of undeclared identifier}} |
| 167 | // expected-note@-1 {{function is a coroutine due to use of 'co_yield'}} |
| 168 | return; // expected-error {{return statement not allowed in coroutine}} |
| 169 | } |
| 170 | |
| 171 | template <class T> |
| 172 | void mixed_yield_template(T) { |
| 173 | co_yield blah; // expected-error {{use of undeclared identifier}} |
| 174 | // expected-note@-1 {{function is a coroutine due to use of 'co_yield'}} |
| 175 | return; // expected-error {{return statement not allowed in coroutine}} |
| 176 | } |
| 177 | |
| 178 | template <class T> |
| 179 | void mixed_yield_template2(T) { |
| 180 | co_yield 42; |
| 181 | // expected-note@-1 {{function is a coroutine due to use of 'co_yield'}} |
| 182 | return; // expected-error {{return statement not allowed in coroutine}} |
| 183 | } |
| 184 | |
| 185 | template <class T> |
| 186 | void mixed_yield_template3(T v) { |
| 187 | co_yield blah(v); |
| 188 | // expected-note@-1 {{function is a coroutine due to use of 'co_yield'}} |
| 189 | return; // expected-error {{return statement not allowed in coroutine}} |
| 190 | } |
| 191 | |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 192 | void mixed_await() { |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 193 | co_await a; // expected-note {{use of 'co_await'}} |
| 194 | return; // expected-error {{not allowed in coroutine}} |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Eric Fiselier | cac0a59 | 2017-03-11 02:35:37 +0000 | [diff] [blame^] | 197 | void mixed_await_invalid() { |
| 198 | co_await 42; // expected-error {{'int' is not a structure or union}} |
| 199 | // expected-note@-1 {{function is a coroutine due to use of 'co_await'}} |
| 200 | return; // expected-error {{not allowed in coroutine}} |
| 201 | } |
| 202 | |
| 203 | template <class T> |
| 204 | void mixed_await_template(T) { |
| 205 | co_await 42; |
| 206 | // expected-note@-1 {{function is a coroutine due to use of 'co_await'}} |
| 207 | return; // expected-error {{not allowed in coroutine}} |
| 208 | } |
| 209 | |
| 210 | template <class T> |
| 211 | void mixed_await_template2(T v) { |
| 212 | co_await v; // expected-error {{'long' is not a structure or union}} |
| 213 | // expected-note@-1 {{function is a coroutine due to use of 'co_await'}} |
| 214 | return; // expected-error {{not allowed in coroutine}} |
| 215 | } |
| 216 | template void mixed_await_template2(long); // expected-note {{requested here}} |
| 217 | |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 218 | void only_coreturn(void_tag) { |
Gor Nishanov | d97f6bf | 2017-01-10 00:08:31 +0000 | [diff] [blame] | 219 | co_return; // OK |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Eric Fiselier | 9813131 | 2016-10-06 21:23:38 +0000 | [diff] [blame] | 222 | void mixed_coreturn(void_tag, bool b) { |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 223 | if (b) |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 224 | co_return; // expected-note {{use of 'co_return'}} |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 225 | else |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 226 | return; // expected-error {{not allowed in coroutine}} |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Eric Fiselier | cac0a59 | 2017-03-11 02:35:37 +0000 | [diff] [blame^] | 229 | void mixed_coreturn_invalid(bool b) { |
| 230 | if (b) |
| 231 | co_return; // expected-note {{use of 'co_return'}} |
| 232 | // expected-error@-1 {{no member named 'return_void' in 'promise'}} |
| 233 | else |
| 234 | return; // expected-error {{not allowed in coroutine}} |
| 235 | } |
| 236 | |
| 237 | template <class T> |
| 238 | void mixed_coreturn_template(void_tag, bool b, T v) { |
| 239 | if (b) |
| 240 | co_return v; // expected-note {{use of 'co_return'}} |
| 241 | // expected-error@-1 {{no member named 'return_value' in 'promise_void'}} |
| 242 | else |
| 243 | return; // expected-error {{not allowed in coroutine}} |
| 244 | } |
| 245 | template void mixed_coreturn_template(void_tag, bool, int); // expected-note {{requested here}} |
| 246 | |
| 247 | template <class T> |
| 248 | void mixed_coreturn_template2(bool b, T) { |
| 249 | if (b) |
| 250 | co_return v; // expected-note {{use of 'co_return'}} |
| 251 | // expected-error@-1 {{use of undeclared identifier 'v'}} |
| 252 | else |
| 253 | return; // expected-error {{not allowed in coroutine}} |
| 254 | } |
| 255 | |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 256 | struct CtorDtor { |
| 257 | CtorDtor() { |
| 258 | co_yield 0; // expected-error {{'co_yield' cannot be used in a constructor}} |
| 259 | } |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 260 | CtorDtor(awaitable a) { |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 261 | // The spec doesn't say this is ill-formed, but it must be. |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 262 | co_await a; // expected-error {{'co_await' cannot be used in a constructor}} |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 263 | } |
| 264 | ~CtorDtor() { |
| 265 | co_return 0; // expected-error {{'co_return' cannot be used in a destructor}} |
| 266 | } |
| 267 | // FIXME: The spec says this is ill-formed. |
| 268 | void operator=(CtorDtor&) { |
Eric Fiselier | c8efda7 | 2016-10-27 18:43:28 +0000 | [diff] [blame] | 269 | co_yield 0; // expected-error {{'co_yield' cannot be used in a copy assignment operator}} |
| 270 | } |
| 271 | void operator=(CtorDtor const &) { |
| 272 | co_yield 0; // expected-error {{'co_yield' cannot be used in a copy assignment operator}} |
| 273 | } |
| 274 | void operator=(CtorDtor &&) { |
| 275 | co_await a; // expected-error {{'co_await' cannot be used in a move assignment operator}} |
| 276 | } |
| 277 | void operator=(CtorDtor const &&) { |
| 278 | co_await a; // expected-error {{'co_await' cannot be used in a move assignment operator}} |
| 279 | } |
| 280 | void operator=(int) { |
| 281 | co_await a; // OK. Not a special member |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 282 | } |
| 283 | }; |
| 284 | |
Richard Smith | 744b224 | 2015-11-20 02:54:01 +0000 | [diff] [blame] | 285 | void unevaluated() { |
| 286 | decltype(co_await a); // expected-error {{cannot be used in an unevaluated context}} |
| 287 | sizeof(co_await a); // expected-error {{cannot be used in an unevaluated context}} |
| 288 | typeid(co_await a); // expected-error {{cannot be used in an unevaluated context}} |
| 289 | decltype(co_yield a); // expected-error {{cannot be used in an unevaluated context}} |
| 290 | sizeof(co_yield a); // expected-error {{cannot be used in an unevaluated context}} |
| 291 | typeid(co_yield a); // expected-error {{cannot be used in an unevaluated context}} |
| 292 | } |
| 293 | |
Eric Fiselier | c8efda7 | 2016-10-27 18:43:28 +0000 | [diff] [blame] | 294 | constexpr auto constexpr_deduced_return_coroutine() { |
Richard Smith | 744b224 | 2015-11-20 02:54:01 +0000 | [diff] [blame] | 295 | co_yield 0; // expected-error {{'co_yield' cannot be used in a constexpr function}} |
Eric Fiselier | c8efda7 | 2016-10-27 18:43:28 +0000 | [diff] [blame] | 296 | // expected-error@-1 {{'co_yield' cannot be used in a function with a deduced return type}} |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | void varargs_coroutine(const char *, ...) { |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 300 | co_await a; // expected-error {{'co_await' cannot be used in a varargs function}} |
| 301 | } |
| 302 | |
Eric Fiselier | c8efda7 | 2016-10-27 18:43:28 +0000 | [diff] [blame] | 303 | auto deduced_return_coroutine() { |
| 304 | co_await a; // expected-error {{'co_await' cannot be used in a function with a deduced return type}} |
| 305 | } |
| 306 | |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 307 | struct outer {}; |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 308 | struct await_arg_1 {}; |
| 309 | struct await_arg_2 {}; |
| 310 | |
| 311 | namespace adl_ns { |
| 312 | struct coawait_arg_type {}; |
| 313 | awaitable operator co_await(coawait_arg_type); |
| 314 | } |
Richard Smith | 9f690bd | 2015-10-27 06:02:45 +0000 | [diff] [blame] | 315 | |
| 316 | namespace dependent_operator_co_await_lookup { |
| 317 | template<typename T> void await_template(T t) { |
| 318 | // no unqualified lookup results |
| 319 | co_await t; // expected-error {{no member named 'await_ready' in 'dependent_operator_co_await_lookup::not_awaitable'}} |
| 320 | // expected-error@-1 {{call to function 'operator co_await' that is neither visible in the template definition nor found by argument-dependent lookup}} |
| 321 | }; |
| 322 | template void await_template(awaitable); |
| 323 | |
| 324 | struct indirectly_awaitable { indirectly_awaitable(outer); }; |
| 325 | awaitable operator co_await(indirectly_awaitable); // expected-note {{should be declared prior to}} |
| 326 | template void await_template(indirectly_awaitable); |
| 327 | |
| 328 | struct not_awaitable {}; |
| 329 | template void await_template(not_awaitable); // expected-note {{instantiation}} |
| 330 | |
| 331 | template<typename T> void await_template_2(T t) { |
| 332 | // one unqualified lookup result |
| 333 | co_await t; |
| 334 | }; |
| 335 | template void await_template(outer); // expected-note {{instantiation}} |
| 336 | template void await_template_2(outer); |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 337 | |
| 338 | struct transform_awaitable {}; |
| 339 | struct transformed {}; |
| 340 | |
| 341 | struct transform_promise { |
| 342 | typedef transform_awaitable await_arg; |
| 343 | coro<transform_promise> get_return_object(); |
| 344 | transformed initial_suspend(); |
| 345 | ::adl_ns::coawait_arg_type final_suspend(); |
| 346 | transformed await_transform(transform_awaitable); |
| 347 | }; |
| 348 | template <class AwaitArg> |
| 349 | struct basic_promise { |
| 350 | typedef AwaitArg await_arg; |
| 351 | coro<basic_promise> get_return_object(); |
| 352 | awaitable initial_suspend(); |
| 353 | awaitable final_suspend(); |
| 354 | }; |
| 355 | |
| 356 | awaitable operator co_await(await_arg_1); |
| 357 | |
| 358 | template <typename T, typename U> |
| 359 | coro<T> await_template_3(U t) { |
| 360 | co_await t; |
| 361 | } |
| 362 | |
| 363 | template coro<basic_promise<await_arg_1>> await_template_3<basic_promise<await_arg_1>>(await_arg_1); |
| 364 | |
| 365 | template <class T, int I = 0> |
| 366 | struct dependent_member { |
| 367 | coro<T> mem_fn() const { |
| 368 | co_await typename T::await_arg{}; // expected-error {{call to function 'operator co_await'}}} |
| 369 | } |
| 370 | template <class U> |
| 371 | coro<T> dep_mem_fn(U t) { |
| 372 | co_await t; |
| 373 | } |
| 374 | }; |
| 375 | |
| 376 | template <> |
| 377 | struct dependent_member<long> { |
| 378 | // FIXME this diagnostic is terrible |
| 379 | coro<transform_promise> mem_fn() const { // expected-error {{no member named 'await_ready' in 'dependent_operator_co_await_lookup::transformed'}} |
| 380 | // expected-note@-1 {{call to 'initial_suspend' implicitly required by the initial suspend point}} |
| 381 | // expected-note@+1 {{function is a coroutine due to use of 'co_await' here}} |
| 382 | co_await transform_awaitable{}; |
| 383 | // expected-error@-1 {{no member named 'await_ready'}} |
| 384 | } |
| 385 | template <class R, class U> |
| 386 | coro<R> dep_mem_fn(U u) { co_await u; } |
| 387 | }; |
| 388 | |
| 389 | awaitable operator co_await(await_arg_2); // expected-note {{'operator co_await' should be declared prior to the call site}} |
| 390 | |
| 391 | template struct dependent_member<basic_promise<await_arg_1>, 0>; |
| 392 | template struct dependent_member<basic_promise<await_arg_2>, 0>; // expected-note {{in instantiation}} |
| 393 | |
| 394 | template <> |
| 395 | coro<transform_promise> |
| 396 | // FIXME this diagnostic is terrible |
| 397 | dependent_member<long>::dep_mem_fn<transform_promise>(int) { // expected-error {{no member named 'await_ready' in 'dependent_operator_co_await_lookup::transformed'}} |
| 398 | //expected-note@-1 {{call to 'initial_suspend' implicitly required by the initial suspend point}} |
| 399 | //expected-note@+1 {{function is a coroutine due to use of 'co_await' here}} |
| 400 | co_await transform_awaitable{}; |
| 401 | // expected-error@-1 {{no member named 'await_ready'}} |
| 402 | } |
| 403 | |
| 404 | void operator co_await(transform_awaitable) = delete; |
| 405 | awaitable operator co_await(transformed); |
| 406 | |
| 407 | template coro<transform_promise> |
| 408 | dependent_member<long>::dep_mem_fn<transform_promise>(transform_awaitable); |
| 409 | |
| 410 | template <> |
| 411 | coro<transform_promise> dependent_member<long>::dep_mem_fn<transform_promise>(long) { |
| 412 | co_await transform_awaitable{}; |
| 413 | } |
| 414 | |
| 415 | template <> |
| 416 | struct dependent_member<int> { |
| 417 | coro<transform_promise> mem_fn() const { |
| 418 | co_await transform_awaitable{}; |
| 419 | } |
| 420 | }; |
| 421 | |
| 422 | template coro<transform_promise> await_template_3<transform_promise>(transform_awaitable); |
| 423 | template struct dependent_member<transform_promise>; |
| 424 | template coro<transform_promise> dependent_member<transform_promise>::dep_mem_fn(transform_awaitable); |
Richard Smith | cfd53b4 | 2015-10-22 06:13:50 +0000 | [diff] [blame] | 425 | } |
Richard Smith | 10610f7 | 2015-11-20 22:57:24 +0000 | [diff] [blame] | 426 | |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 427 | struct yield_fn_tag {}; |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 428 | template <> |
| 429 | struct std::experimental::coroutine_traits<void, yield_fn_tag> { |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 430 | struct promise_type { |
| 431 | // FIXME: add an await_transform overload for functions |
| 432 | awaitable yield_value(int()); |
| 433 | void return_value(int()); |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 434 | |
| 435 | suspend_never initial_suspend(); |
| 436 | suspend_never final_suspend(); |
| 437 | void get_return_object(); |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 438 | }; |
| 439 | }; |
| 440 | |
Richard Smith | 10610f7 | 2015-11-20 22:57:24 +0000 | [diff] [blame] | 441 | namespace placeholder { |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 442 | awaitable f(), f(int); // expected-note 4{{possible target}} |
| 443 | int g(), g(int); // expected-note 2{{candidate}} |
Richard Smith | 10610f7 | 2015-11-20 22:57:24 +0000 | [diff] [blame] | 444 | void x() { |
| 445 | co_await f; // expected-error {{reference to overloaded function}} |
| 446 | } |
| 447 | void y() { |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 448 | co_yield g; // expected-error {{no matching member function for call to 'yield_value'}} |
Richard Smith | 10610f7 | 2015-11-20 22:57:24 +0000 | [diff] [blame] | 449 | } |
| 450 | void z() { |
| 451 | co_await a; |
Richard Smith | 71d403e | 2015-11-22 07:33:28 +0000 | [diff] [blame] | 452 | co_return g; // expected-error {{address of overloaded function 'g' does not match required type 'int'}} |
| 453 | } |
| 454 | |
| 455 | void x(yield_fn_tag) { |
| 456 | co_await f; // expected-error {{reference to overloaded function}} |
| 457 | } |
| 458 | void y(yield_fn_tag) { |
| 459 | co_yield g; |
| 460 | } |
| 461 | void z(yield_fn_tag) { |
| 462 | co_await a; |
| 463 | co_return g; |
Richard Smith | 10610f7 | 2015-11-20 22:57:24 +0000 | [diff] [blame] | 464 | } |
| 465 | } |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 466 | |
| 467 | struct bad_promise_1 { |
| 468 | suspend_always initial_suspend(); |
| 469 | suspend_always final_suspend(); |
| 470 | }; |
| 471 | coro<bad_promise_1> missing_get_return_object() { // expected-error {{no member named 'get_return_object' in 'bad_promise_1'}} |
| 472 | co_await a; |
| 473 | } |
| 474 | |
| 475 | struct bad_promise_2 { |
| 476 | coro<bad_promise_2> get_return_object(); |
| 477 | // FIXME: We shouldn't offer a typo-correction here! |
| 478 | suspend_always final_suspend(); // expected-note {{here}} |
| 479 | }; |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 480 | // FIXME: This shouldn't happen twice |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 481 | coro<bad_promise_2> missing_initial_suspend() { // expected-error {{no member named 'initial_suspend' in 'bad_promise_2'}} |
| 482 | co_await a; |
| 483 | } |
| 484 | |
| 485 | struct bad_promise_3 { |
| 486 | coro<bad_promise_3> get_return_object(); |
| 487 | // FIXME: We shouldn't offer a typo-correction here! |
| 488 | suspend_always initial_suspend(); // expected-note {{here}} |
| 489 | }; |
| 490 | coro<bad_promise_3> missing_final_suspend() { // expected-error {{no member named 'final_suspend' in 'bad_promise_3'}} |
| 491 | co_await a; |
| 492 | } |
| 493 | |
| 494 | struct bad_promise_4 { |
| 495 | coro<bad_promise_4> get_return_object(); |
| 496 | not_awaitable initial_suspend(); |
| 497 | suspend_always final_suspend(); |
| 498 | }; |
| 499 | // FIXME: This diagnostic is terrible. |
| 500 | coro<bad_promise_4> bad_initial_suspend() { // expected-error {{no member named 'await_ready' in 'not_awaitable'}} |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 501 | // expected-note@-1 {{call to 'initial_suspend' implicitly required by the initial suspend point}} |
| 502 | co_await a; // expected-note {{function is a coroutine due to use of 'co_await' here}} |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | struct bad_promise_5 { |
| 506 | coro<bad_promise_5> get_return_object(); |
| 507 | suspend_always initial_suspend(); |
| 508 | not_awaitable final_suspend(); |
| 509 | }; |
| 510 | // FIXME: This diagnostic is terrible. |
| 511 | coro<bad_promise_5> bad_final_suspend() { // expected-error {{no member named 'await_ready' in 'not_awaitable'}} |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 512 | // expected-note@-1 {{call to 'final_suspend' implicitly required by the final suspend point}} |
| 513 | co_await a; // expected-note {{function is a coroutine due to use of 'co_await' here}} |
Richard Smith | 2af65c4 | 2015-11-24 02:34:39 +0000 | [diff] [blame] | 514 | } |
Eric Fiselier | 7d5773e | 2016-09-30 22:38:31 +0000 | [diff] [blame] | 515 | |
Eric Fiselier | 709d1b3 | 2016-10-27 07:30:31 +0000 | [diff] [blame] | 516 | struct bad_promise_6 { |
| 517 | coro<bad_promise_6> get_return_object(); |
| 518 | suspend_always initial_suspend(); |
| 519 | suspend_always final_suspend(); |
| 520 | void return_void(); |
| 521 | void return_value(int) const; |
| 522 | void return_value(int); |
| 523 | }; |
| 524 | coro<bad_promise_6> bad_implicit_return() { // expected-error {{'bad_promise_6' declares both 'return_value' and 'return_void'}} |
| 525 | co_await a; |
| 526 | } |
| 527 | |
| 528 | struct bad_promise_7 { |
| 529 | coro<bad_promise_7> get_return_object(); |
| 530 | suspend_always initial_suspend(); |
| 531 | suspend_always final_suspend(); |
| 532 | void return_void(); |
| 533 | void set_exception(int *); |
| 534 | }; |
| 535 | coro<bad_promise_7> no_std_current_exc() { |
| 536 | // expected-error@-1 {{you need to include <exception> before defining a coroutine that implicitly uses 'set_exception'}} |
| 537 | co_await a; |
| 538 | } |
| 539 | |
| 540 | namespace std { |
| 541 | int *current_exception(); |
| 542 | } |
| 543 | |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 544 | struct bad_promise_base { |
| 545 | private: |
| 546 | void return_void(); |
| 547 | }; |
| 548 | struct bad_promise_8 : bad_promise_base { |
Eric Fiselier | 709d1b3 | 2016-10-27 07:30:31 +0000 | [diff] [blame] | 549 | coro<bad_promise_8> get_return_object(); |
| 550 | suspend_always initial_suspend(); |
| 551 | suspend_always final_suspend(); |
Eric Fiselier | 709d1b3 | 2016-10-27 07:30:31 +0000 | [diff] [blame] | 552 | void set_exception(); // expected-note {{function not viable}} |
| 553 | void set_exception(int *) __attribute__((unavailable)); // expected-note {{explicitly made unavailable}} |
| 554 | void set_exception(void *); // expected-note {{candidate function}} |
| 555 | }; |
| 556 | coro<bad_promise_8> calls_set_exception() { |
| 557 | // expected-error@-1 {{call to unavailable member function 'set_exception'}} |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 558 | // FIXME: also warn about private 'return_void' here. Even though building |
| 559 | // the call to set_exception has already failed. |
Eric Fiselier | 709d1b3 | 2016-10-27 07:30:31 +0000 | [diff] [blame] | 560 | co_await a; |
| 561 | } |
Eric Fiselier | 7d5773e | 2016-09-30 22:38:31 +0000 | [diff] [blame] | 562 | |
Eric Fiselier | 20f25cb | 2017-03-06 23:38:15 +0000 | [diff] [blame] | 563 | struct bad_promise_9 { |
| 564 | coro<bad_promise_9> get_return_object(); |
| 565 | suspend_always initial_suspend(); |
| 566 | suspend_always final_suspend(); |
| 567 | void await_transform(void *); // expected-note {{candidate}} |
| 568 | awaitable await_transform(int) __attribute__((unavailable)); // expected-note {{explicitly made unavailable}} |
| 569 | void return_void(); |
| 570 | }; |
| 571 | coro<bad_promise_9> calls_await_transform() { |
| 572 | co_await 42; // expected-error {{call to unavailable member function 'await_transform'}} |
| 573 | // expected-note@-1 {{call to 'await_transform' implicitly required by 'co_await' here}} |
| 574 | } |
| 575 | |
| 576 | struct bad_promise_10 { |
| 577 | coro<bad_promise_10> get_return_object(); |
| 578 | suspend_always initial_suspend(); |
| 579 | suspend_always final_suspend(); |
| 580 | int await_transform; |
| 581 | void return_void(); |
| 582 | }; |
| 583 | coro<bad_promise_10> bad_coawait() { |
| 584 | // FIXME this diagnostic is terrible |
| 585 | co_await 42; // expected-error {{called object type 'int' is not a function or function pointer}} |
| 586 | // expected-note@-1 {{call to 'await_transform' implicitly required by 'co_await' here}} |
| 587 | } |
| 588 | |
| 589 | struct call_operator { |
| 590 | template <class... Args> |
| 591 | awaitable operator()(Args...) const { return a; } |
| 592 | }; |
| 593 | void ret_void(); |
| 594 | struct good_promise_1 { |
| 595 | coro<good_promise_1> get_return_object(); |
| 596 | suspend_always initial_suspend(); |
| 597 | suspend_always final_suspend(); |
| 598 | static const call_operator await_transform; |
| 599 | using Fn = void (*)(); |
| 600 | Fn return_void = ret_void; |
| 601 | }; |
| 602 | const call_operator good_promise_1::await_transform; |
| 603 | coro<good_promise_1> ok_static_coawait() { |
| 604 | // FIXME this diagnostic is terrible |
| 605 | co_await 42; |
| 606 | } |
| 607 | |
Gor Nishanov | 3e048bb | 2016-10-04 00:31:16 +0000 | [diff] [blame] | 608 | template<> struct std::experimental::coroutine_traits<int, int, const char**> |
Eric Fiselier | 7d5773e | 2016-09-30 22:38:31 +0000 | [diff] [blame] | 609 | { using promise_type = promise; }; |
| 610 | |
Eric Fiselier | c8efda7 | 2016-10-27 18:43:28 +0000 | [diff] [blame] | 611 | int main(int, const char**) { |
| 612 | co_await a; // expected-error {{'co_await' cannot be used in the 'main' function}} |
Eric Fiselier | 7d5773e | 2016-09-30 22:38:31 +0000 | [diff] [blame] | 613 | } |
Gor Nishanov | 6dcb0eb | 2017-03-09 03:09:43 +0000 | [diff] [blame] | 614 | |
| 615 | struct good_promise_2 { |
| 616 | float get_return_object(); |
| 617 | suspend_always initial_suspend(); |
| 618 | suspend_always final_suspend(); |
| 619 | void return_void(); |
| 620 | }; |
| 621 | template<> struct std::experimental::coroutine_handle<good_promise_2> {}; |
| 622 | |
| 623 | template<> struct std::experimental::coroutine_traits<float> |
| 624 | { using promise_type = good_promise_2; }; |
| 625 | |
| 626 | float badly_specialized_coro_handle() { // expected-error {{std::experimental::coroutine_handle missing a member named 'from_address'}} |
| 627 | //expected-note@-1 {{call to 'initial_suspend' implicitly required by the initial suspend point}} |
| 628 | co_return; //expected-note {{function is a coroutine due to use of 'co_return' here}} |
| 629 | } |