mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
181 B
Swift
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
|
|
}
|
|
|
|
}
|