fail_out_of_bound.carbon 1.8 KB

123456789101112131415161718192021222324252627282930313233343536
  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]]:19: ERROR: Cannot initialize array of 1 element(s) from 3 initializer(s).
  7. // CHECK:STDERR: var a: [i32; 1] = (1, 2, 3);
  8. // CHECK:STDERR: ^~~~~~~~~
  9. var a: [i32; 1] = (1, 2, 3);
  10. // CHECK:STDOUT: --- fail_out_of_bound.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %.loc10_14: i32 = int_literal 1, const
  14. // CHECK:STDOUT: %.loc10_15.1: type = array_type %.loc10_14, i32, const
  15. // CHECK:STDOUT: %.loc10_15.2: type = ptr_type [i32; 1], const
  16. // CHECK:STDOUT: %.loc10_20: i32 = int_literal 1, const
  17. // CHECK:STDOUT: %.loc10_23: i32 = int_literal 2, const
  18. // CHECK:STDOUT: %.loc10_26: i32 = int_literal 3, const
  19. // CHECK:STDOUT: %.loc10_27: type = tuple_type (i32, i32, i32), const
  20. // CHECK:STDOUT: }
  21. // CHECK:STDOUT:
  22. // CHECK:STDOUT: file {
  23. // CHECK:STDOUT: package: <namespace> = namespace package, {.a = %a}
  24. // CHECK:STDOUT: %.loc10_14: i32 = int_literal 1, const = constants.%.loc10_14
  25. // CHECK:STDOUT: %.loc10_15: type = array_type %.loc10_14, i32, const = constants.%.loc10_15.1
  26. // CHECK:STDOUT: %a.var: ref [i32; 1] = var a
  27. // CHECK:STDOUT: %a: ref [i32; 1] = bind_name a, %a.var
  28. // CHECK:STDOUT: %.loc10_20: i32 = int_literal 1, const = constants.%.loc10_20
  29. // CHECK:STDOUT: %.loc10_23: i32 = int_literal 2, const = constants.%.loc10_23
  30. // CHECK:STDOUT: %.loc10_26: i32 = int_literal 3, const = constants.%.loc10_26
  31. // CHECK:STDOUT: %.loc10_27: (i32, i32, i32) = tuple_literal (%.loc10_20, %.loc10_23, %.loc10_26)
  32. // CHECK:STDOUT: assign %a.var, <error>
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT: