Files
swift-mirror/test/SILGen/Inputs/TestableMultifileHelper.swift
Jordan Rose 1c1aed747a Add some tests for @testable and subclassing.
Inspired by the previous commit. These are things we expect to keep
working.
2016-09-06 17:13:04 -07:00

9 lines
127 B
Swift

public protocol HasDefaultFoo {}
extension HasDefaultFoo {
internal func foo() {}
}
internal class Base {
func foo() {}
}