Files
swift-mirror/test/multifile/Inputs/overrideB.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
67 B
Swift

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