| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- // 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/impl/fail_out_of_line_member.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/parse/testdata/generics/impl/fail_out_of_line_member.carbon
- // TODO: Decide if we want to support this syntax. See #3763.
- interface Interface {
- fn F();
- }
- impl bool as Interface {
- fn F();
- }
- // CHECK:STDERR: fail_out_of_line_member.carbon:[[@LINE+4]]:4: error: `fn` introducer should be followed by a name [ExpectedDeclName]
- // CHECK:STDERR: fn (bool as Interface).F() {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- fn (bool as Interface).F() {}
- class C {
- impl Self as Interface {
- fn F();
- }
- }
- // CHECK:STDERR: fail_out_of_line_member.carbon:[[@LINE+4]]:6: error: `.` should be followed by a name [ExpectedDeclNameAfterPeriod]
- // CHECK:STDERR: fn C.(Self as Interface).F() {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- fn C.(Self as Interface).F() {}
- // CHECK:STDOUT: - filename: fail_out_of_line_member.carbon
- // CHECK:STDOUT: parse_tree: [
- // CHECK:STDOUT: {kind: 'FileStart', text: ''},
- // CHECK:STDOUT: {kind: 'InterfaceIntroducer', text: 'interface'},
- // CHECK:STDOUT: {kind: 'IdentifierNameNotBeforeParams', text: 'Interface'},
- // CHECK:STDOUT: {kind: 'InterfaceDefinitionStart', text: '{', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'},
- // CHECK:STDOUT: {kind: 'IdentifierNameBeforeParams', text: 'F'},
- // CHECK:STDOUT: {kind: 'ExplicitParamListStart', text: '('},
- // CHECK:STDOUT: {kind: 'ExplicitParamList', text: ')', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'FunctionDecl', text: ';', subtree_size: 5},
- // CHECK:STDOUT: {kind: 'InterfaceDefinition', text: '}', subtree_size: 9},
- // CHECK:STDOUT: {kind: 'ImplIntroducer', text: 'impl'},
- // CHECK:STDOUT: {kind: 'BoolTypeLiteral', text: 'bool'},
- // CHECK:STDOUT: {kind: 'ImplTypeAs', text: 'as', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'IdentifierNameExpr', text: 'Interface'},
- // CHECK:STDOUT: {kind: 'ImplDefinitionStart', text: '{', subtree_size: 5},
- // CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'},
- // CHECK:STDOUT: {kind: 'IdentifierNameBeforeParams', text: 'F'},
- // CHECK:STDOUT: {kind: 'ExplicitParamListStart', text: '('},
- // CHECK:STDOUT: {kind: 'ExplicitParamList', text: ')', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'FunctionDecl', text: ';', subtree_size: 5},
- // CHECK:STDOUT: {kind: 'ImplDefinition', text: '}', subtree_size: 11},
- // CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'},
- // CHECK:STDOUT: {kind: 'InvalidParse', text: '(', has_error: yes},
- // CHECK:STDOUT: {kind: 'FunctionDecl', text: '}', has_error: yes, subtree_size: 3},
- // CHECK:STDOUT: {kind: 'ClassIntroducer', text: 'class'},
- // CHECK:STDOUT: {kind: 'IdentifierNameNotBeforeParams', text: 'C'},
- // CHECK:STDOUT: {kind: 'ClassDefinitionStart', text: '{', subtree_size: 3},
- // CHECK:STDOUT: {kind: 'ImplIntroducer', text: 'impl'},
- // CHECK:STDOUT: {kind: 'SelfTypeNameExpr', text: 'Self'},
- // CHECK:STDOUT: {kind: 'ImplTypeAs', text: 'as', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'IdentifierNameExpr', text: 'Interface'},
- // CHECK:STDOUT: {kind: 'ImplDefinitionStart', text: '{', subtree_size: 5},
- // CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'},
- // CHECK:STDOUT: {kind: 'IdentifierNameBeforeParams', text: 'F'},
- // CHECK:STDOUT: {kind: 'ExplicitParamListStart', text: '('},
- // CHECK:STDOUT: {kind: 'ExplicitParamList', text: ')', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'FunctionDecl', text: ';', subtree_size: 5},
- // CHECK:STDOUT: {kind: 'ImplDefinition', text: '}', subtree_size: 11},
- // CHECK:STDOUT: {kind: 'ClassDefinition', text: '}', subtree_size: 15},
- // CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'},
- // CHECK:STDOUT: {kind: 'IdentifierNameNotBeforeParams', text: 'C'},
- // CHECK:STDOUT: {kind: 'IdentifierNameQualifierWithoutParams', text: '.', subtree_size: 2},
- // CHECK:STDOUT: {kind: 'InvalidParse', text: '(', has_error: yes},
- // CHECK:STDOUT: {kind: 'FunctionDecl', text: '}', has_error: yes, subtree_size: 5},
- // CHECK:STDOUT: {kind: 'FileEnd', text: ''},
- // CHECK:STDOUT: ]
|