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
|
// RUN: %target-swift-frontend -emit-sil %s -verify -sil-verify-all
////////////////////////
// MARK: Declarations //
////////////////////////
public class Klass {}
public struct NonTrivialStruct {
var k = Klass()
func doSomethingDefault() {}
borrowing func doSomethingBorrowing() {}
mutating func doSomethingMutating() {}
}
public protocol P {
static var value: Self { get }
}
public struct GenericNonTrivialStruct<T : P> {
var t = T.value
func doSomethingDefault() {}
borrowing func doSomethingBorrowing() {}
mutating func doSomethingMutating() {}
}
public struct TrivialStruct {
var k: Int
func doSomethingDefault() {}
borrowing func doSomethingBorrowing() {}
mutating func doSomethingMutating() {}
}
enum LoadableEnum {
case x(NonTrivialStruct)
case y(Int)
}
enum TrivialEnum {
case x(Int64)
case y(Int)
}
enum AddressOnlyEnum<T> {
case x(NonTrivialStruct)
case y(T)
}
func borrowValDefault(_ x: NonTrivialStruct) {}
func borrowValBorrowing(_ x: borrowing NonTrivialStruct) {}
func borrowValDefault(_ x: TrivialStruct) {}
func borrowValBorrowing(_ x: borrowing TrivialStruct) {}
func borrowValDefault<T : P>(_ x: GenericNonTrivialStruct<T>) {}
func borrowValBorrowing<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {}
func consumeVal(_ x: consuming NonTrivialStruct) {}
func consumeVal<T : P>(_ x: consuming GenericNonTrivialStruct<T>) {}
///////////////////////////////////////////
// MARK: Simple Loadable Borrowing Tests //
///////////////////////////////////////////
func testLoadableBorrowingConsume(_ x: borrowing NonTrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
let _ = x // expected-note {{consumed here}}
let _ = x.k
}
func testLoadableBorrowingConsume2(_ x: borrowing NonTrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
var y = x // expected-note {{consumed here}}
y = x // expected-note {{consumed here}}
_ = y
}
func testLoadableBorrowingConsume3(_ x: borrowing NonTrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
let y = x // expected-note {{consumed here}}
_ = y
}
func testLoadableBorrowingUse(_ x: borrowing NonTrivialStruct) {
_ = x
}
func testLoadableBorrowingUseAndConsume(_ x: borrowing NonTrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
_ = x
let _ = x // expected-note {{consumed here}}
}
func testLoadableBorrowingCallBorrowValDefault(_ x: borrowing NonTrivialStruct) {
borrowValDefault(x)
}
func testLoadableBorrowingCallBorrowValBorrowing(_ x: borrowing NonTrivialStruct) {
borrowValBorrowing(x)
}
func testLoadableBorrowingCallMethodSelfDefault(_ x: borrowing NonTrivialStruct) {
x.doSomethingDefault()
}
func testLoadableBorrowingCallMethodSelfBorrowing(_ x: borrowing NonTrivialStruct) {
x.doSomethingBorrowing()
}
func testLoadableBorrowingEscapingClosure(_ x: borrowing NonTrivialStruct) {
// expected-error @-1 {{'x' cannot be captured by an escaping closure since it is a borrowed parameter}}
var f: () -> () = {}
f = { // expected-note {{closure capturing 'x' here}}
_ = x
}
_ = f
}
func testLoadableBorrowingNonEscapingClosure(_ x: borrowing NonTrivialStruct) {
func useNonEscaping(_ f: () -> ()) {}
useNonEscaping {
_ = x
}
}
func testLoadableBorrowingConsumeOperator(_ x: borrowing NonTrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
_ = consume x // expected-note {{consumed here}}
}
func testLoadableBorrowingEnum(_ x: borrowing LoadableEnum) {
switch x {
case let .x(y):
_ = y
break
case .y:
break
}
}
func testLoadableBorrowingCopyOperator(_ x: borrowing NonTrivialStruct) {
_ = copy x
let _ = copy x
consumeVal(copy x)
}
//////////////////////////////////////////
// MARK: Trivial Struct Borrowing Tests //
//////////////////////////////////////////
func testTrivialBorrowingConsume(_ x: borrowing TrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
let _ = x // expected-note {{consumed here}}
let _ = x.k
}
func testTrivialBorrowingConsume2(_ x: borrowing TrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
var y = x // expected-note {{consumed here}}
y = x // expected-note {{consumed here}}
_ = y
}
func testTrivialBorrowingConsume3(_ x: borrowing TrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
let y = x // expected-note {{consumed here}}
_ = y
}
func testTrivialBorrowingUse(_ x: borrowing TrivialStruct) {
_ = x
}
func testTrivialBorrowingUseAndConsume(_ x: borrowing TrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
_ = x
let _ = x // expected-note {{consumed here}}
}
func testTrivialBorrowingCallBorrowValDefault(_ x: borrowing TrivialStruct) {
borrowValDefault(x)
}
func testTrivialBorrowingCallBorrowValBorrowing(_ x: borrowing TrivialStruct) {
borrowValBorrowing(x)
}
func testTrivialBorrowingCallMethodSelfDefault(_ x: borrowing TrivialStruct) {
x.doSomethingDefault()
}
func testTrivialBorrowingCallMethodSelfBorrowing(_ x: borrowing TrivialStruct) {
x.doSomethingBorrowing()
}
func testTrivialBorrowingEscapingClosure(_ x: borrowing TrivialStruct) {
// expected-error @-1 {{'x' cannot be captured by an escaping closure since it is a borrowed parameter}}
var f: () -> () = {}
f = { // expected-note {{closure capturing 'x' here}}
_ = x
}
_ = f
}
func testTrivialBorrowingNonEscapingClosure(_ x: borrowing TrivialStruct) {
// expected-error @-1 {{'x' cannot be captured by an escaping closure since it is a borrowed parameter}}
// TODO: Wrong
func useNonEscaping(_ f: () -> ()) {}
useNonEscaping { // expected-note {{closure capturing 'x' here}}
_ = x
}
}
func testTrivialBorrowingConsumeOperator(_ x: borrowing TrivialStruct) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
_ = consume x // expected-note {{consumed here}}
}
func testTrivialBorrowingEnum(_ x: borrowing TrivialEnum) {
switch x {
case let .x(y):
_ = y
break
case .y:
break
}
}
func testTrivialBorrowingCopyOperator(_ x: borrowing TrivialStruct) {
_ = copy x
let _ = copy x
}
//////////////////////////////////////////////
// MARK: Simple AddressOnly Borrowing Tests //
//////////////////////////////////////////////
func testAddressOnlyBorrowSimple<T>(_ x: borrowing T) {}
func testAddressOnlyBorrowingConsume<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
let _ = x // expected-note {{consumed here}}
let _ = x.t
}
func testAddressOnlyBorrowingConsume2<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
// expected-error @-2 {{'x' is borrowed and cannot be consumed}}
var y = x // expected-note {{consumed here}}
y = x // expected-note {{consumed here}}
_ = y
}
func testAddressOnlyBorrowingConsume3<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
let y = x // expected-note {{consumed here}}
_ = y
}
func testAddressOnlyBorrowingUse<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
_ = x
}
func testAddressOnlyBorrowingUseAndConsume<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
borrowValDefault(x)
let _ = x // expected-note {{consumed here}}
}
func testAddressOnlyBorrowingCallBorrowValDefault<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
borrowValDefault(x)
}
func testAddressOnlyBorrowingCallBorrowValBorrowing<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
borrowValBorrowing(x)
}
func testAddressOnlyBorrowingCallMethodSelfDefault<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
x.doSomethingDefault()
}
func testAddressOnlyBorrowingCallMethodSelfBorrowing<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
x.doSomethingBorrowing()
}
func testAddressOnlyBorrowingEscapingClosure<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
var f: () -> () = {}
f = { // expected-note {{consumed here}}
_ = x
}
_ = f
}
func testAddressOnlyBorrowingNonEscapingClosure<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
func useNonEscaping(_ f: () -> ()) {}
useNonEscaping { // expected-note {{consumed here}}
_ = x
}
}
func testAddressOnlyBorrowingCast<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
let _ = x as Any // expected-note {{consumed here}}
}
func testAddressOnlyBorrowingCastCheck<T : P>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
if x is Any { // expected-note {{consumed here}}
// expected-warning @-1 {{'is' test is always true}}
}
}
func testAddressOnlyBorrowingEnum<T>(_ x: borrowing AddressOnlyEnum<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
switch x { // expected-note {{consumed here}}
case let .x(y):
_ = y
break
case let .y(z):
_ = z
break
}
}
func testAddressOnlyConsumeOperator<T>(_ x: borrowing GenericNonTrivialStruct<T>) {
// expected-error @-1 {{'x' is borrowed and cannot be consumed}}
_ = consume x // expected-note {{consumed here}}
}
func testAddressOnlyCopyOperator<T>(_ x: borrowing GenericNonTrivialStruct<T>) {
_ = copy x
let _ = copy x
consumeVal(copy x)
}
///////////////////////////////
// MARK: Loadable Self Tests //
///////////////////////////////
struct LoadableSelfTest {
var k = Klass()
consuming func consumeSelf() {}
func doSomethingDefault() {}
borrowing func doSomethingBorrowing() {}
borrowing func testUseSelf() {
_ = self
}
borrowing func testLetUseSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
let _ = self // expected-note {{consumed here}}
}
borrowing func callDoSomethingDefault() {
self.doSomethingDefault()
}
borrowing func callDoSomethingBorrowing() {
self.doSomethingBorrowing()
}
borrowing func testConsumeOperatorSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
_ = consume self // expected-note {{consumed here}}
}
borrowing func testCopyOperatorSelf() {
_ = copy self
let _ = copy self
(copy self).consumeSelf()
}
borrowing func testUseField() {
_ = self.k
}
borrowing func testConsumeField() {
// No error, since our field is copyable.
let _ = self.k
}
borrowing func testCallConsumeMethod() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
consumeSelf() // expected-note {{consumed here}}
}
borrowing func testCallFreeFunctionConsumeSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
consumeLoadableSelfTest(self) // expected-note {{consumed here}}
}
borrowing func testCallEscapingClosure() {
// expected-error @-1 {{'self' cannot be captured by an escaping closure since it is a borrowed parameter}}
var f: () -> () = {}
f = { // expected-note {{closure capturing 'self' here}}
let _ = copy self
}
f()
}
borrowing func testCallNonEscapingClosure() {
func f(_ x: () -> ()) {}
f {
_ = self
}
}
}
func consumeLoadableSelfTest(_ x: consuming LoadableSelfTest) {}
///////////////////////////////////
// MARK: Address Only Self Tests //
///////////////////////////////////
struct AddressOnlySelfTest<T> {
var t: T
consuming func consumeSelf() {}
func doSomethingDefault() {}
borrowing func doSomethingBorrowing() {}
borrowing func testUseSelf() {
_ = self
}
borrowing func testLetUseSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
let _ = self // expected-note {{consumed here}}
}
borrowing func callDoSomethingDefault() {
self.doSomethingDefault()
}
borrowing func callDoSomethingBorrowing() {
self.doSomethingBorrowing()
}
borrowing func testConsumeOperatorSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
_ = consume self // expected-note {{consumed here}}
}
borrowing func testCopyOperatorSelf() {
_ = copy self
let _ = copy self
(copy self).consumeSelf()
}
borrowing func testUseField() {
_ = self.t
}
borrowing func testConsumeField() {
// No error, since our field is copyable.
let _ = self.t
}
borrowing func testCallConsumeMethod() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
consumeSelf() // expected-note {{consumed here}}
}
borrowing func testCallFreeFunctionConsumeSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
consumeAddressOnlySelfTest(self) // expected-note {{consumed here}}
}
borrowing func testCallEscapingClosure() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
// TODO: Capture.
var f: () -> () = {}
f = { // expected-note {{consumed here}}
let _ = copy self
}
f()
}
borrowing func testCallNonEscapingClosure() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
// TODO: fix
func f(_ x: () -> ()) {}
f { // expected-note {{consumed here}}
_ = self
}
}
}
func consumeAddressOnlySelfTest<T>(_ x: consuming AddressOnlySelfTest<T>) {}
//////////////////////////////
// MARK: Trivial Self Tests //
//////////////////////////////
struct TrivialSelfTest {
var t: Int
consuming func consumeSelf() {}
func doSomethingDefault() {}
borrowing func doSomethingBorrowing() {}
borrowing func testUseSelf() {
_ = self
}
borrowing func testLetUseSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
let _ = self // expected-note {{consumed here}}
}
borrowing func callDoSomethingDefault() {
self.doSomethingDefault()
}
borrowing func callDoSomethingBorrowing() {
self.doSomethingBorrowing()
}
borrowing func testConsumeOperatorSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
_ = consume self // expected-note {{consumed here}}
}
borrowing func testCopyOperatorSelf() {
_ = copy self
}
borrowing func testUseField() {
_ = self.t
}
borrowing func testConsumeField() {
// No error, since our field is copyable.
let _ = self.t
}
borrowing func testCallConsumeMethod() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
consumeSelf() // expected-note {{consumed here}}
}
borrowing func testCallFreeFunctionConsumeSelf() {
// expected-error @-1 {{'self' is borrowed and cannot be consumed}}
consumeTrivialSelfTest(self) // expected-note {{consumed here}}
}
borrowing func testCallEscapingClosure() {
// expected-error @-1 {{'self' cannot be captured by an escaping closure since it is a borrowed parameter}}
var f: () -> () = {}
f = { // expected-note {{closure capturing 'self' here}}
let _ = self
}
f()
}
borrowing func testCallNonEscapingClosure() {
// expected-error @-1 {{'self' cannot be captured by an escaping closure since it is a borrowed parameter}}
// TODO: Error
func f(_ x: () -> ()) {}
f { // expected-note {{closure capturing 'self' here}}
_ = self
}
}
}
func consumeTrivialSelfTest(_ x: consuming TrivialSelfTest) {}
|