Files
swift-mirror/test/SwiftSyntax/Inputs/nested-blocks.swift
2018-05-22 09:07:56 -07:00

9 lines
99 B
Swift

struct Foo {
func foo() {
print("hello")
func bar() {
print("goodbye")
}
}
}