| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // 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
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/int.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/class/fail_field_modifiers.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/fail_field_modifiers.carbon
- class Class {
- // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: error: `default` not allowed on `var` declaration [ModifierNotAllowedOnDeclaration]
- // CHECK:STDERR: default var j: i32;
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR:
- default var j: i32;
- // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: error: `final` not allowed on `var` declaration [ModifierNotAllowedOnDeclaration]
- // CHECK:STDERR: final var k: i32;
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR:
- final var k: i32;
- // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: error: `default` not allowed; requires interface scope [ModifierRequiresInterface]
- // CHECK:STDERR: default let l: i32 = 0;
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR:
- default let l: i32 = 0;
- // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: error: `final` not allowed; requires interface scope [ModifierRequiresInterface]
- // CHECK:STDERR: final let m: i32 = 1;
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR:
- final let m: i32 = 1;
- }
|