| 12345678910111213141516171819202122 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // AUTOUPDATE
- var y: {} = {};
- // CHECK:STDOUT: - filename: no_entries.carbon
- // CHECK:STDOUT: parse_tree: [
- // CHECK:STDOUT: {kind: 'FileStart', text: ''},
- // CHECK:STDOUT: {kind: 'VariableIntroducer', text: 'var'},
- // CHECK:STDOUT: {kind: 'Name', text: 'y'},
- // CHECK:STDOUT: {kind: 'StructLiteralOrStructTypeLiteralStart', text: '{'},
- // CHECK:STDOUT: {kind: 'StructLiteral', text: '}', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'PatternBinding', text: ':', subtree_size: 4},
- // CHECK:STDOUT: {kind: 'VariableInitializer', text: '='},
- // CHECK:STDOUT: {kind: 'StructLiteralOrStructTypeLiteralStart', text: '{'},
- // CHECK:STDOUT: {kind: 'StructLiteral', text: '}', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'VariableDecl', text: ';', subtree_size: 9},
- // CHECK:STDOUT: {kind: 'FileEnd', text: ''},
- // CHECK:STDOUT: ]
|