mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
* Fix uninitialized array access/initialization * Handle printing uninitialized value * Fix error message directory name
17 lines
547 B
Plaintext
17 lines
547 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
|
|
// RUN: %{not} %{explorer-run}
|
|
// RUN: %{not} %{explorer-run-trace}
|
|
|
|
package ExplorerTest impl;
|
|
|
|
fn Main() -> i32 {
|
|
var my_array : [i32; 1];
|
|
// CHECK:STDERR: RUNTIME ERROR: {{.*}}/explorer/testdata/array/fail_print_uninitalized_array_element.carbon:[[@LINE+1]]: Printing uninitialized value
|
|
Print("{0}", my_array[0]);
|
|
return 0;
|
|
}
|