mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
6e1bf0d10d
At some point I want to propose a revised model for exports, but for now just mark that support for '@exported' is still experimental and subject to change. (Thanks, Max.)
11 lines
207 B
Swift
11 lines
207 B
Swift
@_exported import Foo
|
|
|
|
public class FooOverlayClassBase {
|
|
public func f() {}
|
|
}
|
|
public class FooOverlayClassDerived : FooOverlayClassBase {
|
|
override public func f() {}
|
|
}
|
|
|
|
class InternalClassShouldShow {}
|