blob: 8712a98edd96963bb3744839343bbb261c569d3a [file] [log] [blame]
class C {
var a : Int
var b : Int
init(a : Int, b: Int) {
self.a = a
self.b = b
}
}
// RUN: rm -rf %t.result && mkdir -p %t.result
// RUN: %refactor -extract-function -source-filename %s -pos=5:1 -end-pos=6:15 >> %t.result/L5-6.swift
// RUN: diff -u %S/Outputs/extract_init/L5-6.swift.expected %t.result/L5-6.swift