Files
swift-mirror/test/IDE/structure.swift
2013-10-22 20:54:46 +00:00

12 lines
181 B
Swift

// RUN: %swift-ide-test -structure -source-filename %s | FileCheck %s
// CHECK: Class at 4:1 - 11:1
class MyCls {
//CHECK: Func at 7:3 - 9:3
func foo() {
var abc
}
}