fail_assign_empty.carbon 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/tuple/no_prelude/fail_assign_empty.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/tuple/no_prelude/fail_assign_empty.carbon
  10. // CHECK:STDERR: fail_assign_empty.carbon:[[@LINE+3]]:16: error: cannot initialize tuple of 1 element(s) from tuple with 0 element(s).
  11. // CHECK:STDERR: var x: ((),) = ();
  12. // CHECK:STDERR: ^~
  13. var x: ((),) = ();
  14. // CHECK:STDOUT: --- fail_assign_empty.carbon
  15. // CHECK:STDOUT:
  16. // CHECK:STDOUT: constants {
  17. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  18. // CHECK:STDOUT: %.2: type = tuple_type (%.1) [template]
  19. // CHECK:STDOUT: }
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: file {
  22. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  23. // CHECK:STDOUT: .x = %x
  24. // CHECK:STDOUT: }
  25. // CHECK:STDOUT: %.loc14_10: %.1 = tuple_literal ()
  26. // CHECK:STDOUT: %.loc14_12.1: %.2 = tuple_literal (%.loc14_10)
  27. // CHECK:STDOUT: %.loc14_12.2: type = converted %.loc14_10, constants.%.1 [template = constants.%.1]
  28. // CHECK:STDOUT: %.loc14_12.3: type = converted %.loc14_12.1, constants.%.2 [template = constants.%.2]
  29. // CHECK:STDOUT: %x.var: ref %.2 = var x
  30. // CHECK:STDOUT: %x: ref %.2 = bind_name x, %x.var
  31. // CHECK:STDOUT: }
  32. // CHECK:STDOUT:
  33. // CHECK:STDOUT: fn @__global_init() {
  34. // CHECK:STDOUT: !entry:
  35. // CHECK:STDOUT: %.loc14: %.1 = tuple_literal ()
  36. // CHECK:STDOUT: assign file.%x.var, <error>
  37. // CHECK:STDOUT: return
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT: