1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
|
// RUN: %target-typecheck-verify-swift -swift-version 6
func doStuff(_ fn : @escaping () -> Int) {}
func doVoidStuff(_ fn : @escaping () -> ()) {}
func doVoidStuffNonEscaping(_ fn: () -> ()) {}
class ExplicitSelfRequiredTest {
var x = 42
func method() -> Int {
doVoidStuff({ doStuff({ x+1 })}) // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note{{capture 'self' explicitly to enable implicit 'self' in this closure}} {{18-18= [self] in}} expected-note{{reference 'self.' explicitly}} {{29-29=self.}}
doVoidStuff({ [self] in doStuff({ x+1 })}) // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note{{capture 'self' explicitly to enable implicit 'self' in this closure}} {{38-38= [self] in}} expected-note{{reference 'self.' explicitly}} {{39-39=self.}}
return 42
}
func weakSelfError() {
doVoidStuff({ [weak self] in x += 1 }) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
doVoidStuffNonEscaping({ [weak self] in x += 1 }) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
doStuff({ [weak self] in x+1 }) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
doVoidStuff({ [weak self] in _ = method() }) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note{{reference 'self?.' explicitly}}
doVoidStuffNonEscaping({ [weak self] in _ = method() }) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note{{reference 'self?.' explicitly}}
doStuff({ [weak self] in method() }) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note{{reference 'self?.' explicitly}}
}
}
// https://github.com/apple/swift/issues/56501
class C_56501 {
func operation() {}
func test1() {
doVoidStuff { [self] in
operation()
}
}
func test2() {
doVoidStuff { [self] in
doVoidStuff {
// expected-error@+3 {{call to method 'operation' in closure requires explicit use of 'self'}}
// expected-note@-2 {{capture 'self' explicitly to enable implicit 'self' in this closure}}
// expected-note@+1 {{reference 'self.' explicitly}}
operation()
}
}
}
func test3() {
doVoidStuff { [self] in
doVoidStuff { [self] in
operation()
}
}
}
func test4() {
doVoidStuff { [self] in
doVoidStuff {
self.operation()
}
}
}
func test5() {
doVoidStuff { [self] in
doVoidStuffNonEscaping {
operation()
}
}
}
func test6() {
doVoidStuff { [self] in
doVoidStuff { [self] in
doVoidStuff {
// expected-error@+3 {{call to method 'operation' in closure requires explicit use of 'self'}}
// expected-note@-2 {{capture 'self' explicitly to enable implicit 'self' in this closure}}
// expected-note@+1 {{reference 'self.' explicitly}}
operation()
}
}
}
}
}
func takesEscapingWithAllowedImplicitSelf(@_implicitSelfCapture _ fn: @escaping () -> Void) {}
public final class TestImplicitSelfForWeakSelfCapture: Sendable {
static let staticOptional: TestImplicitSelfForWeakSelfCapture? = .init()
func method() { }
private init() {
doVoidStuff { [weak self] in
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
guard let self = self else { return }
method()
}
doVoidStuff { [weak self] in
guard let self else { return }
method()
}
doVoidStuff { [weak self] in
if let self = self {
method()
}
if let self {
method()
}
}
doVoidStuff { [weak self] in
guard let self = self ?? TestImplicitSelfForWeakSelfCapture.staticOptional else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
let otherValue = TestImplicitSelfForWeakSelfCapture.staticOptional ?? self
doVoidStuff { [weak self = otherValue] in
guard let self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping { [weak self] in
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
guard let self = self else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
if let self = self {
method()
}
}
takesEscapingWithAllowedImplicitSelf { [weak self] in
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
guard let self = self else { return }
method()
}
doVoidStuff { [weak self] in
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
guard let self = self else { return }
method() // expected-error{{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note{{reference 'self.' explicitly}}
}
}
doVoidStuff { [weak self] in
let `self`: TestImplicitSelfForWeakSelfCapture? = self ?? TestImplicitSelfForWeakSelfCapture.staticOptional
guard let self = self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping { [weak self] in
let `self`: TestImplicitSelfForWeakSelfCapture? = self ?? TestImplicitSelfForWeakSelfCapture.staticOptional
guard let self = self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping { [weak self] in
guard let self = self else { return }
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
}
doVoidStuffNonEscaping { [weak self] in
guard let self = self ?? TestImplicitSelfForWeakSelfCapture.staticOptional else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuff { [weak self] in
func innerFunction1() {
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
self?.method()
}
guard let self else { return }
func innerFunction2() {
method()
self.method()
}
doVoidStuff { [self] in
method()
self.method()
}
}
doVoidStuffNonEscaping { [weak self] in
func innerFunction1() {
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
self?.method()
}
guard let self else { return }
func innerFunction2() {
method()
self.method()
}
}
}
}
class NoImplicitSelfInInnerClass {
func method() { }
private init() { // expected-note {{'self' declared here}} expected-note {{'self' declared here}}
doVoidStuff {
class InnerType { // expected-note {{type declared here}}
func functionInsideInnerType() {
method() // expected-error {{class declaration cannot close over value 'self' defined in outer scope}}
self.method() // expected-error {{value of type 'InnerType' has no member 'method'}}
}
}
}
doVoidStuff { [weak self] in
guard let self else { return }
method()
class InnerType { // expected-note {{type declared here}}
func functionInsideInnerType() {
method() // expected-error {{class declaration cannot close over value 'self' defined in outer scope}}
self.method() // expected-error {{value of type 'InnerType' has no member 'method'}}
}
}
}
}
func foo(condition: Bool) {
doVoidStuff { [weak self] in
guard condition, let self else { return }
method()
}
doVoidStuff { [weak self] in
guard let self, condition else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
guard condition, let self else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
guard let self, condition else { return }
method()
}
}
func foo(optionalCondition: Bool?) {
doVoidStuff { [weak self] in
guard let optionalCondition, optionalCondition, let self else { return }
method()
}
doVoidStuff { [weak self] in
guard let self, let optionalCondition, optionalCondition else { return }
method()
}
doVoidStuff { [weak self] in
guard let optionalCondition, let self, optionalCondition else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
guard let optionalCondition, optionalCondition, let self else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
guard let self, let optionalCondition, optionalCondition else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
guard let optionalCondition, let self, optionalCondition else { return }
method()
}
}
func foo() {
doVoidStuff { [weak self] in
guard #available(SwiftStdlib 5.8, *), let self else { return }
method()
}
doVoidStuff { [weak self] in
guard let self, #available(SwiftStdlib 5.8, *) else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
guard #available(SwiftStdlib 5.8, *), let self else { return }
method()
}
doVoidStuffNonEscaping { [weak self] in
guard let self, #available(SwiftStdlib 5.8, *) else { return }
method()
}
}
}
public class TestRebindingSelfIsDisallowed {
let count: Void = ()
private init() {
doVoidStuff {
let `self` = "self shouldn't become a string"
let _: Int = count // expected-error{{cannot convert value of type 'Void' to specified type 'Int'}}
}
doVoidStuffNonEscaping {
let `self` = "self shouldn't become a string"
let _: Int = count // expected-error{{cannot convert value of type 'Void' to specified type 'Int'}}
}
doVoidStuff { [weak self] in
let `self` = "self shouldn't become a string"
let _: Int = count // expected-error{{cannot convert value of type 'Void' to specified type 'Int'}}
}
doVoidStuffNonEscaping { [weak self] in
let `self` = "self shouldn't become a string"
let _: Int = count // expected-error{{cannot convert value of type 'Void' to specified type 'Int'}}
}
}
func method() {
let `self` = "self shouldn't become a string"
let _: Int = count // expected-error{{cannot convert value of type 'Void' to specified type 'Int'}}
}
func testTypeNamedSelf() {
struct `self` {
static func staticMember() {}
}
doVoidStuff {
staticMember() // expected-error{{cannot find 'staticMember' in scope}}
self.staticMember()
}
doVoidStuffNonEscaping {
staticMember() // expected-error{{cannot find 'staticMember' in scope}}
self.staticMember()
}
doVoidStuff { [weak self] in
staticMember() // expected-error{{cannot find 'staticMember' in scope}}
self.staticMember()
}
doVoidStuffNonEscaping { [weak self] in
staticMember() // expected-error{{cannot find 'staticMember' in scope}}
self.staticMember()
}
}
}
class TestGithubIssue70089 {
var x: Int = 0
nonisolated(unsafe) static let staticOptional: TestGithubIssue70089? = .init()
func method() { }
func f() {
doVoidStuff { [weak self] in
guard let self else { return }
doVoidStuff { [self] in
x += 1
}
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
doVoidStuff { [self = TestGithubIssue70089()] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}} expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}} expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
doVoidStuff {
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
doVoidStuff { [self] in
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
doVoidStuff {
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
self.x += 1
}
}
doVoidStuff { [self] in
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
self.x += 1
}
}
doVoidStuff {
doVoidStuff { [self] in
x += 1
self.x += 1
}
}
}
doVoidStuff { [weak self] in
doVoidStuff {
x += 1 // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note{{reference 'self?.' explicitly}}
self?.x += 1
}
}
doVoidStuff { [weak self] in
doVoidStuffNonEscaping {
x += 1 // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note{{reference 'self?.' explicitly}}
self?.x += 1
}
}
doVoidStuff { [weak self] in
// Since this unwrapping is invalid, implicit self is disallowed in all nested closures:
guard let self = self ?? TestGithubIssue70089.staticOptional else { return }
doVoidStuff { [self] in
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
doVoidStuffNonEscaping {
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
doVoidStuff { [self = TestGithubIssue70089()] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
doVoidStuff { [self] in
x += 1 // expected-error {{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
}
}
class TestGithubIssue69911 {
var x: Int = 0
nonisolated(unsafe) static let staticOptional: TestGithubIssue69911? = .init()
func f() {
doVoidStuff { [weak self] in
guard let self else { return }
doVoidStuffNonEscaping {
x += 1
self.x += 1
}
doVoidStuffNonEscaping {
doVoidStuffNonEscaping {
x += 1
self.x += 1
}
}
doVoidStuff { [self] in
doVoidStuffNonEscaping {
x += 1
self.x += 1
}
}
doVoidStuffNonEscaping { [self] in
doVoidStuffNonEscaping { [self] in
x += 1
self.x += 1
}
}
doVoidStuffNonEscaping { [self = TestGithubIssue69911()] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}} expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}} expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
doVoidStuff { [self] in
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
doVoidStuffNonEscaping {
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
}
doVoidStuff { [weak self] in
doVoidStuffNonEscaping { [weak self] in
x += 1 // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
self?.x += 1
}
}
doVoidStuff { [weak self] in
// Since this unwrapping is invalid, implicit self is disallowed in all nested closures:
guard let self = self ?? TestGithubIssue69911.staticOptional else { return }
doVoidStuffNonEscaping {
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
doVoidStuffNonEscaping {
doVoidStuffNonEscaping {
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
doVoidStuff { [self] in
doVoidStuffNonEscaping {
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
doVoidStuffNonEscaping { [self] in
doVoidStuffNonEscaping { [self] in
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
doVoidStuffNonEscaping { [self = TestGithubIssue69911()] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
doVoidStuff { [self] in
doVoidStuffNonEscaping {
doVoidStuffNonEscaping {
doVoidStuff { [weak self] in
self?.x += 1
guard let self else { return }
x += 1 // expected-error{{reference to property 'x' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.x += 1
}
}
}
}
}
}
}
func withNonEscapingAutoclosure<T>(_ x: @autoclosure () -> T) {}
func withEscapingAutoclosure<T>(_ x: @escaping @autoclosure () -> T) {}
final class AutoclosureTests {
func bar() -> Bool { true }
func method() { }
func foo(_ x: AutoclosureTests) {
withNonEscapingAutoclosure(bar())
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
doVoidStuff { [self] in
withNonEscapingAutoclosure(bar())
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
withNonEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
doVoidStuffNonEscaping {
withNonEscapingAutoclosure(bar())
}
doVoidStuffNonEscaping { [self] in
withNonEscapingAutoclosure(bar())
}
doVoidStuff {
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
doVoidStuffNonEscaping {
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
doVoidStuffNonEscaping { [self] in
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
}
doVoidStuff { [weak self] in
withNonEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
doVoidStuff { [weak self] in
withEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
doVoidStuff { [weak self] in
doVoidStuff {
withNonEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
doVoidStuff { [weak self] in
doVoidStuff {
withEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
doVoidStuff { [weak self] in
doVoidStuff { [self] in
withNonEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
doVoidStuff { [weak self] in
doVoidStuff { [self] in
withEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
doVoidStuff { [weak self] in
guard let self else { return }
withNonEscapingAutoclosure(bar())
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
withNonEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
doVoidStuffNonEscaping {
withNonEscapingAutoclosure(bar())
}
doVoidStuffNonEscaping { [self] in
withNonEscapingAutoclosure(bar())
}
doVoidStuff {
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
doVoidStuffNonEscaping {
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
doVoidStuffNonEscaping { [self] in
withEscapingAutoclosure(bar()) // expected-error {{call to method 'bar' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
}
doVoidStuff { [weak self] in
doVoidStuff { [self] in
guard let self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
}
doVoidStuff { [weak self] in
let someOptional: Self? = Self()
let `self` = self ?? someOptional
guard let self = self else { return }
method() // expected-error{{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuff {
let someOptional: Self? = Self()
guard case let self = someOptional else { return }
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
doVoidStuff { [weak self] in
let someOptional: Self? = Self()
var `self` = self ?? someOptional
guard let self = self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
doVoidStuff {
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuff { [self] in
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
}
doVoidStuff { [weak self] in
doVoidStuff { [self] in
guard let self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
}
doVoidStuff { [weak self] in
guard let self = self else { return }
doVoidStuff { // expected-note {{capture 'self' explicitly to enable implicit 'self' in this closure}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}} expected-note {{reference 'self.' explicitly}}
}
}
}
}
class TestInvalidRebindingOutsideOfClosure {
func method() { }
func testInvalidRebindingCondition() {
guard case let self = TestInvalidRebindingOutsideOfClosure() else { return } // expected-warning {{'guard' condition is always true, body is unreachable}}
doVoidStuff { [self] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping { [self] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuff() { [weak self] in
guard let self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping() { [weak self] in
guard let self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
}
func testInvalidSelfWithBackticks() {
let `self` = TestInvalidRebindingOutsideOfClosure()
doVoidStuff { [self] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping { [self] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuff() { [weak self] in
guard let self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping() { [weak self] in
guard let self else { return }
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
}
func testInvalidSelfWithBackticks2() {
let `self` = self
doVoidStuff { [self] in // expected-note{{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error{{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
// Allowed in Swift 5 mode for source compatibility:
doVoidStuffNonEscaping { [self] in // expected-note{{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error{{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuff() { [weak self] in
guard let self else { return }
method() // expected-error{{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
doVoidStuffNonEscaping() { [weak self] in
guard let self else { return }
method() // expected-error{{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
}
}
}
struct TestInvalidSelfCaptureInStruct {
func method() { }
func bar() {
// To maintain source compatibility, we continue allowing this in Swift 5 mode:
doVoidStuff { [self = TestInvalidSelfCaptureInStruct()] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.method()
}
doVoidStuffNonEscaping { [self = TestInvalidSelfCaptureInStruct()] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.method()
}
doVoidStuffNonEscaping { [self = TestInvalidSelfCaptureInStruct()] in // expected-note {{variable other than 'self' captured here under the name 'self' does not enable implicit 'self'}}
method() // expected-error {{call to method 'method' in closure requires explicit use of 'self' to make capture semantics explicit}}
self.method()
}
}
}
// rdar://129475277
class rdar129475277 {
func bar() -> Int { 0 }
func method() {}
func test1() {
takesEscapingWithAllowedImplicitSelf { [weak self] in
takesEscapingWithAllowedImplicitSelf {
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
takesEscapingWithAllowedImplicitSelf { [weak self] in
takesEscapingWithAllowedImplicitSelf {
doVoidStuffNonEscaping {
withNonEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
}
takesEscapingWithAllowedImplicitSelf { [weak self] in
withNonEscapingAutoclosure(bar()) // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
func test2() {
guard case let self: rdar129475277? = nil else { return }
// expected-warning@-1 {{'guard' condition is always true, body is unreachable}}
doVoidStuffNonEscaping {
method() // expected-error {{explicit use of 'self' is required when 'self' is optional, to make control flow explicit}} expected-note {{reference 'self?.' explicitly}}
}
}
}
|