| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // 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
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/tuple/no_prelude/fail_assign_empty.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/tuple/no_prelude/fail_assign_empty.carbon
- // CHECK:STDERR: fail_assign_empty.carbon:[[@LINE+3]]:16: error: cannot initialize tuple of 1 element(s) from tuple with 0 element(s).
- // CHECK:STDERR: var x: ((),) = ();
- // CHECK:STDERR: ^~
- var x: ((),) = ();
- // CHECK:STDOUT: --- fail_assign_empty.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %.2: type = tuple_type (%.1) [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .x = %x
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %.loc14_10: %.1 = tuple_literal ()
- // CHECK:STDOUT: %.loc14_12.1: %.2 = tuple_literal (%.loc14_10)
- // CHECK:STDOUT: %.loc14_12.2: type = converted %.loc14_10, constants.%.1 [template = constants.%.1]
- // CHECK:STDOUT: %.loc14_12.3: type = converted %.loc14_12.1, constants.%.2 [template = constants.%.2]
- // CHECK:STDOUT: %x.var: ref %.2 = var x
- // CHECK:STDOUT: %x: ref %.2 = bind_name x, %x.var
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @__global_init() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %.loc14: %.1 = tuple_literal ()
- // CHECK:STDOUT: assign file.%x.var, <error>
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|