mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Find all the usages of `--enable-experimental-feature` or `--enable-upcoming-feature` in the tests and replace some of the `REQUIRES: asserts` to use `REQUIRES: swift-feature-Foo` instead, which should correctly apply to depending on the asserts/noasserts mode of the toolchain for each feature. Remove some comments that talked about enabling asserts since they don't apply anymore (but I might had miss some). All this was done with an automated script, so some formatting weirdness might happen, but I hope I fixed most of those. There might be some tests that were `REQUIRES: asserts` that might run in `noasserts` toolchains now. This will normally be because their feature went from experimental to upcoming/base and the tests were not updated.
66 lines
1.2 KiB
Swift
66 lines
1.2 KiB
Swift
// RUN: %target-swift-emit-silgen -enable-experimental-feature MoveOnlyClasses %s | %FileCheck %s
|
|
// RUN: %target-swift-emit-sil -O -sil-verify-all -enable-experimental-feature MoveOnlyClasses %s | %FileCheck %s
|
|
|
|
// REQUIRES: swift_feature_MoveOnlyClasses
|
|
|
|
//////////////////
|
|
// Declarations //
|
|
//////////////////
|
|
|
|
class OrdinaryClass {}
|
|
|
|
public enum MaybeKlass: ~Copyable {
|
|
case just(Klass)
|
|
case none
|
|
}
|
|
|
|
public class Klass: ~Copyable {
|
|
var intField: Int
|
|
var klsField: OrdinaryClass // FIXME(104504239): this is suppose to be MaybeKlass, or better yet, Optional<Klass>
|
|
|
|
init() {
|
|
klsField = OrdinaryClass()
|
|
intField = 5
|
|
}
|
|
}
|
|
|
|
public func nonConsumingUseKlass(_ k: borrowing Klass) {}
|
|
|
|
///////////
|
|
// Tests //
|
|
///////////
|
|
|
|
// -----------
|
|
// Class Tests
|
|
//
|
|
|
|
// CHECK-LABEL: useVarKlass
|
|
public func useVarKlassNoErrorSimple() {
|
|
var k = Klass()
|
|
k = Klass()
|
|
|
|
nonConsumingUseKlass(k)
|
|
let k2 = k
|
|
let _ = k2
|
|
}
|
|
|
|
/*
|
|
public func useVarKlassErrorSimple() {
|
|
var k = Klass()
|
|
let k1 = k
|
|
let _ = k1
|
|
let k2 = k
|
|
let _ = k2
|
|
|
|
k = Klass()
|
|
let k3 = k
|
|
let _ = k3
|
|
let k4 = k
|
|
let _ = k4
|
|
|
|
k = Klass()
|
|
let k5 = k
|
|
let _ = k5
|
|
}
|
|
*/
|