mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This makes the difference between errors and lower-level diagnostics visible to users, and aligns the toolchain's behavior with the expectations in `driver_fuzzer.cpp`.
17 lines
676 B
Plaintext
17 lines
676 B
Plaintext
// 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
|
|
|
|
// CHECK:STDERR: fail_bound_overflow.carbon:[[@LINE+3]]:32: ERROR: Invalid array expression.
|
|
// CHECK:STDERR: var a: [1; 39999999999999999993];
|
|
// CHECK:STDERR: ^
|
|
var a: [1; 39999999999999999993];
|
|
|
|
// CHECK:STDOUT: file "fail_bound_overflow.carbon" {
|
|
// CHECK:STDOUT: %.loc10_9: i32 = int_literal 1
|
|
// CHECK:STDOUT: %.loc10_12: i32 = int_literal 39999999999999999993
|
|
// CHECK:STDOUT: %a: ref <error> = var "a"
|
|
// CHECK:STDOUT: }
|