mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
1c1aed747a
Inspired by the previous commit. These are things we expect to keep working.
9 lines
127 B
Swift
9 lines
127 B
Swift
public protocol HasDefaultFoo {}
|
|
extension HasDefaultFoo {
|
|
internal func foo() {}
|
|
}
|
|
|
|
internal class Base {
|
|
func foo() {}
|
|
}
|