| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // 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
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/parse/testdata/generics/deduced_params/two_suffix_comma.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/parse/testdata/generics/deduced_params/two_suffix_comma.carbon
- class Foo[a: i32, b: i32,]();
- interface Bar[a: i32, b: i32,]() {}
- // CHECK:STDOUT: - filename: two_suffix_comma.carbon
- // CHECK:STDOUT: parse_tree: [
- // CHECK:STDOUT: {kind: 'FileStart', text: ''},
- // CHECK:STDOUT: {kind: 'ClassIntroducer', text: 'class'},
- // CHECK:STDOUT: {kind: 'IdentifierName', text: 'Foo'},
- // CHECK:STDOUT: {kind: 'ImplicitParamListStart', text: '['},
- // CHECK:STDOUT: {kind: 'IdentifierName', text: 'a'},
- // CHECK:STDOUT: {kind: 'IntTypeLiteral', text: 'i32'},
- // CHECK:STDOUT: {kind: 'BindingPattern', text: ':', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'PatternListComma', text: ','},
- // CHECK:STDOUT: {kind: 'IdentifierName', text: 'b'},
- // CHECK:STDOUT: {kind: 'IntTypeLiteral', text: 'i32'},
- // CHECK:STDOUT: {kind: 'BindingPattern', text: ':', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'PatternListComma', text: ','},
- // CHECK:STDOUT: {kind: 'ImplicitParamList', text: ']', subtree_size: 10},
- // CHECK:STDOUT: {kind: 'TuplePatternStart', text: '('},
- // CHECK:STDOUT: {kind: 'TuplePattern', text: ')', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'ClassDecl', text: ';', subtree_size: 15},
- // CHECK:STDOUT: {kind: 'InterfaceIntroducer', text: 'interface'},
- // CHECK:STDOUT: {kind: 'IdentifierName', text: 'Bar'},
- // CHECK:STDOUT: {kind: 'ImplicitParamListStart', text: '['},
- // CHECK:STDOUT: {kind: 'IdentifierName', text: 'a'},
- // CHECK:STDOUT: {kind: 'IntTypeLiteral', text: 'i32'},
- // CHECK:STDOUT: {kind: 'BindingPattern', text: ':', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'PatternListComma', text: ','},
- // CHECK:STDOUT: {kind: 'IdentifierName', text: 'b'},
- // CHECK:STDOUT: {kind: 'IntTypeLiteral', text: 'i32'},
- // CHECK:STDOUT: {kind: 'BindingPattern', text: ':', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'PatternListComma', text: ','},
- // CHECK:STDOUT: {kind: 'ImplicitParamList', text: ']', subtree_size: 10},
- // CHECK:STDOUT: {kind: 'TuplePatternStart', text: '('},
- // CHECK:STDOUT: {kind: 'TuplePattern', text: ')', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'InterfaceDefinitionStart', text: '{', subtree_size: 15},
- // CHECK:STDOUT: {kind: 'InterfaceDefinition', text: '}', subtree_size: 16},
- // CHECK:STDOUT: {kind: 'FileEnd', text: ''},
- // CHECK:STDOUT: ]
|