Files
swift-mirror/test/SwiftSyntax/Inputs/nested-blocks.swift
Harlan a66931e7fb [SwiftSyntax] Allow for visiting SyntaxCollections (#16687)
* Allow for visiting SyntaxCollections

* The 'base type' for a SyntaxCollection is 'Syntax'

* Actually add test file
2018-05-18 10:22:26 -07:00

8 lines
94 B
Swift

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