fail_bool_value.carbon 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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/alias/fail_bool_value.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/alias/fail_bool_value.carbon
  10. // CHECK:STDERR: fail_bool_value.carbon:[[@LINE+3]]:11: ERROR: Alias initializer must be a name reference.
  11. // CHECK:STDERR: alias a = false;
  12. // CHECK:STDERR: ^~~~~
  13. alias a = false;
  14. let a_test: bool = a;
  15. // CHECK:STDOUT: --- fail_bool_value.carbon
  16. // CHECK:STDOUT:
  17. // CHECK:STDOUT: constants {
  18. // CHECK:STDOUT: %.1: bool = bool_literal false [template]
  19. // CHECK:STDOUT: %Bool.type: type = fn_type @Bool [template]
  20. // CHECK:STDOUT: %.2: type = tuple_type () [template]
  21. // CHECK:STDOUT: %Bool: %Bool.type = struct_value () [template]
  22. // CHECK:STDOUT: }
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: file {
  25. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  26. // CHECK:STDOUT: .Core = %Core
  27. // CHECK:STDOUT: .a = %a
  28. // CHECK:STDOUT: .a_test = @__global_init.%a_test
  29. // CHECK:STDOUT: }
  30. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  31. // CHECK:STDOUT: %.loc14: bool = bool_literal false [template = constants.%.1]
  32. // CHECK:STDOUT: %a: <error> = bind_alias a, <error> [template = <error>]
  33. // CHECK:STDOUT: %import_ref: %Bool.type = import_ref ir7, inst+2, loaded [template = constants.%Bool]
  34. // CHECK:STDOUT: %bool.make_type: init type = call constants.%Bool() [template = bool]
  35. // CHECK:STDOUT: %.loc15_13.1: type = value_of_initializer %bool.make_type [template = bool]
  36. // CHECK:STDOUT: %.loc15_13.2: type = converted %bool.make_type, %.loc15_13.1 [template = bool]
  37. // CHECK:STDOUT: }
  38. // CHECK:STDOUT:
  39. // CHECK:STDOUT: fn @Bool() -> type = "bool.make_type";
  40. // CHECK:STDOUT:
  41. // CHECK:STDOUT: fn @__global_init() {
  42. // CHECK:STDOUT: !entry:
  43. // CHECK:STDOUT: %a.ref: <error> = name_ref a, file.%a [template = <error>]
  44. // CHECK:STDOUT: %a_test: bool = bind_name a_test, <error>
  45. // CHECK:STDOUT: return
  46. // CHECK:STDOUT: }
  47. // CHECK:STDOUT: