mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
9 lines
198 B
Swift
9 lines
198 B
Swift
// RUN: %swift-syntax-test -input-source-filename %s -serialize-raw-tree > %t
|
|
// RUN: diff %t %S/Inputs/serialize_struct_decl.json
|
|
|
|
struct Foo {
|
|
let bar : Int
|
|
|
|
let baz : Array < Int >
|
|
}
|