Files
swift-mirror/test/FixCode/Inputs/t2.swift
Argyrios Kyrtzidis 8b250d6d35 [driver] Remove the 'swift-fixit' symlink and introduce '-emit-fixits-path' frontend option that
writes compiler fixits as source edits.

Driver option '-fixit-code' adds '-emit-fixits-path' for all the frontend invocations.

Swift SVN r27208
2015-04-10 17:33:29 +00:00

9 lines
102 B
Swift

func foo2() {
class Base {}
class Derived : Base {}
var b : Base
b as Derived
undeclared_foo2
}