mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
When computing the type of a potentially-overriden declaration, make sure we have an interface type. Add a test to ensure that we validate overrides cross-file correctly.
6 lines
67 B
Swift
6 lines
67 B
Swift
class Super {
|
|
func bar<T>(_: Into<T>) { }
|
|
|
|
func wibble() { }
|
|
}
|