mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
...specifically `@objc dynamic`, that is. This is one case where we /know/ that the override does not depend on the base in any way---any attributes have already been propagated down, and there's no vtable entry. This is especially important for properties, which have no recovery if their accessors can't be deserialized. rdar://50827914
10 lines
113 B
Plaintext
10 lines
113 B
Plaintext
module FooKit {
|
|
header "FooKit.h"
|
|
export *
|
|
}
|
|
|
|
module FooKit_SECRET {
|
|
header "FooKit_SECRET.h"
|
|
export *
|
|
}
|