| 1234567891011121314151617181920212223 |
- // 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
- package ExplorerTest api;
- choice Ints {
- None(),
- One(i32),
- Two(i32, i32)
- }
- fn Main() -> i32 {
- match (Ints.None()) {
- case Ints.None => { return 0; }
- // CHECK:STDERR: COMPILATION ERROR: fail_choice_pattern_no_parens.carbon:[[@LINE+3]]: type error in `match` pattern type
- // CHECK:STDERR: expected: fn () -> choice Ints
- // CHECK:STDERR: actual: choice Ints
- default => { return 1; }
- }
- }
|