mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
writes compiler fixits as source edits. Driver option '-fixit-code' adds '-emit-fixits-path' for all the frontend invocations. Swift SVN r27208
9 lines
102 B
Swift
9 lines
102 B
Swift
func foo1() {
|
|
class Base {}
|
|
class Derived : Base {}
|
|
|
|
var b : Base
|
|
b as Derived
|
|
undeclared_foo1
|
|
}
|