| 1234567891011121314151617181920 |
- // 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
- // CHECK:STDERR: fail_too_few_values.carbon:[[@LINE+3]]:37: Cannot implicitly convert from `{.a: i32}` to `{.a: i32, .b: i32}`.
- // CHECK:STDERR: var x: {.a: i32, .b: i32} = {.a = 1};
- // CHECK:STDERR: ^
- var x: {.a: i32, .b: i32} = {.a = 1};
- // CHECK:STDOUT: file "fail_too_few_values.carbon" {
- // CHECK:STDOUT: %.loc10_25: type = struct_type {.a: i32, .b: i32}
- // CHECK:STDOUT: %x: ref {.a: i32, .b: i32} = var "x"
- // CHECK:STDOUT: %.loc10_35: i32 = int_literal 1
- // CHECK:STDOUT: %.loc10_33: i32 = stub_reference %.loc10_35
- // CHECK:STDOUT: %.loc10_36.1: type = struct_type {.a: i32}
- // CHECK:STDOUT: %.loc10_36.2: {.a: i32} = struct_literal (%.loc10_33)
- // CHECK:STDOUT: assign %x, <error>
- // CHECK:STDOUT: }
|