fail_out_of_bound.carbon 1.2 KB

12345678910111213141516171819202122232425
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. // CHECK:STDERR: fail_out_of_bound.carbon:[[@LINE+3]]:28: Cannot implicitly convert from `(i32, i32, i32) as type` to `[i32; 1]`.
  7. // CHECK:STDERR: var a: [i32; 1] = (1, 2, 3);
  8. // CHECK:STDERR: ^
  9. var a: [i32; 1] = (1, 2, 3);
  10. // CHECK:STDOUT: file "fail_out_of_bound.carbon" {
  11. // CHECK:STDOUT: %.loc10_14: i32 = int_literal 1
  12. // CHECK:STDOUT: %.loc10_15: type = array_type %.loc10_14, i32
  13. // CHECK:STDOUT: %a: ref [i32; 1] = var "a"
  14. // CHECK:STDOUT: %.loc10_20.1: i32 = int_literal 1
  15. // CHECK:STDOUT: %.loc10_20.2: i32 = stub_reference %.loc10_20.1
  16. // CHECK:STDOUT: %.loc10_23.1: i32 = int_literal 2
  17. // CHECK:STDOUT: %.loc10_23.2: i32 = stub_reference %.loc10_23.1
  18. // CHECK:STDOUT: %.loc10_26.1: i32 = int_literal 3
  19. // CHECK:STDOUT: %.loc10_26.2: i32 = stub_reference %.loc10_26.1
  20. // CHECK:STDOUT: %.loc10_27.1: type = tuple_type (i32, i32, i32)
  21. // CHECK:STDOUT: %.loc10_27.2: (i32, i32, i32) = tuple_literal (%.loc10_20.2, %.loc10_23.2, %.loc10_26.2)
  22. // CHECK:STDOUT: assign %a, <error>
  23. // CHECK:STDOUT: }