| 12345678910111213141516171819202122232425262728293031 |
- // 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
- // TODO: Improve the diagnostic to say that the `abstract` modifier can't be
- // used on an `interface`.
- // CHECK:STDERR: fail_introducer.carbon:[[@LINE+3]]:1: ERROR: Unrecognized declaration introducer.
- // CHECK:STDERR: abstract interface I;
- // CHECK:STDERR: ^~~~~~~~
- abstract interface I;
- // CHECK:STDERR: fail_introducer.carbon:[[@LINE+3]]:1: ERROR: Unrecognized declaration introducer.
- // CHECK:STDERR: base fn F();
- // CHECK:STDERR: ^~~~
- base fn F();
- // CHECK:STDERR: fail_introducer.carbon:[[@LINE+3]]:1: ERROR: Unrecognized declaration introducer.
- // CHECK:STDERR: abstract base class C;
- // CHECK:STDERR: ^~~~~~~~
- abstract base class C;
- // CHECK:STDOUT: - filename: fail_introducer.carbon
- // CHECK:STDOUT: parse_tree: [
- // CHECK:STDOUT: {kind: 'FileStart', text: ''},
- // CHECK:STDOUT: {kind: 'EmptyDecl', text: ';', has_error: yes},
- // CHECK:STDOUT: {kind: 'EmptyDecl', text: ';', has_error: yes},
- // CHECK:STDOUT: {kind: 'EmptyDecl', text: ';', has_error: yes},
- // CHECK:STDOUT: {kind: 'FileEnd', text: ''},
- // CHECK:STDOUT: ]
|