Files
swift-mirror/test/multifile/Inputs/overrideC.swift
Doug Gregor 9939834a76 [Type checker] Validate potentially-overridden decls when needed.
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.
2018-07-04 22:45:10 -07:00

6 lines
81 B
Swift

class Sub: Super {
override func bar<T>(_: Into<T>) { }
func wibble() { }
}