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