mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01: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 >
|
|
}
|