| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // 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_bool_value.carbon:[[@LINE+3]]:11: ERROR: Alias initializer must be a name reference.
- // CHECK:STDERR: alias a = false;
- // CHECK:STDERR: ^~~~~
- alias a = false;
- let a_test: bool = a;
- // CHECK:STDOUT: --- fail_bool_value.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %.1: bool = bool_literal false [template]
- // CHECK:STDOUT: %Bool: type = fn_type @Bool [template]
- // CHECK:STDOUT: %.2: type = tuple_type () [template]
- // CHECK:STDOUT: %struct: Bool = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = %Core
- // CHECK:STDOUT: .a = %a
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
- // CHECK:STDOUT: %.loc10: bool = bool_literal false [template = constants.%.1]
- // CHECK:STDOUT: %a: <error> = bind_alias a, <error> [template = <error>]
- // CHECK:STDOUT: %import_ref: Bool = import_ref ir7, inst+2, loaded [template = constants.%struct]
- // CHECK:STDOUT: %bool.make_type: init type = call constants.%struct() [template = bool]
- // CHECK:STDOUT: %.loc11_13.1: type = value_of_initializer %bool.make_type [template = bool]
- // CHECK:STDOUT: %.loc11_13.2: type = converted %bool.make_type, %.loc11_13.1 [template = bool]
- // CHECK:STDOUT: %a.ref: <error> = name_ref a, %a [template = <error>]
- // CHECK:STDOUT: %a_test: bool = bind_name a_test, <error>
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Bool() -> type = "bool.make_type";
- // CHECK:STDOUT:
|