Files
swift-mirror/test/IRGen/async/Inputs/resilient_actor.swift
Doug Gregor b88e678694 [SE-0306] Disable actor inheritance.
Actor inheritance was removed in the second revision of SE-0306. Remove
the ability to inherit actors.

Note that this doesn't fully eliminate all vestigates of inheritance
from actors. There are simplifications that need to be performed
still, e.g., there's no need to distinguish
designated/convenience/required initializers. That will follow.
2021-04-23 15:08:57 -07:00

9 lines
118 B
Swift

open actor ResilientBaseActor {
public init() {}
}
@_fixed_layout
open actor FixedBaseActor {
public init() {}
}