fail_generic.carbon 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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/let/fail_generic.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/let/fail_generic.carbon
  10. // TODO: Should this be valid?
  11. fn F(a: i32) -> i32 {
  12. let T:! type = i32;
  13. // CHECK:STDERR: fail_generic.carbon:[[@LINE+4]]:3: ERROR: Cannot implicitly convert from `i32` to `T`.
  14. // CHECK:STDERR: let x: T = 5;
  15. // CHECK:STDERR: ^~~~~~~~~~~~~
  16. // CHECK:STDERR:
  17. let x: T = 5;
  18. // CHECK:STDERR: fail_generic.carbon:[[@LINE+3]]:3: ERROR: Cannot implicitly convert from `T` to `i32`.
  19. // CHECK:STDERR: return x;
  20. // CHECK:STDERR: ^~~~~~~~~
  21. return x;
  22. }
  23. // CHECK:STDOUT: --- fail_generic.carbon
  24. // CHECK:STDOUT:
  25. // CHECK:STDOUT: constants {
  26. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  27. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  28. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  29. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  30. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  31. // CHECK:STDOUT: %T: type = bind_symbolic_name T 0 [symbolic]
  32. // CHECK:STDOUT: %.2: i32 = int_literal 5 [template]
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT:
  35. // CHECK:STDOUT: file {
  36. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  37. // CHECK:STDOUT: .Core = %Core
  38. // CHECK:STDOUT: .F = %F.decl
  39. // CHECK:STDOUT: }
  40. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  41. // CHECK:STDOUT: %import_ref.1: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  42. // CHECK:STDOUT: %import_ref.2: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  43. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  44. // CHECK:STDOUT: %int.make_type_32.loc12_9: init type = call constants.%Int32() [template = i32]
  45. // CHECK:STDOUT: %.loc12_9.1: type = value_of_initializer %int.make_type_32.loc12_9 [template = i32]
  46. // CHECK:STDOUT: %.loc12_9.2: type = converted %int.make_type_32.loc12_9, %.loc12_9.1 [template = i32]
  47. // CHECK:STDOUT: %a.loc12_6.1: i32 = param a
  48. // CHECK:STDOUT: @F.%a: i32 = bind_name a, %a.loc12_6.1
  49. // CHECK:STDOUT: %int.make_type_32.loc12_17: init type = call constants.%Int32() [template = i32]
  50. // CHECK:STDOUT: %.loc12_17.1: type = value_of_initializer %int.make_type_32.loc12_17 [template = i32]
  51. // CHECK:STDOUT: %.loc12_17.2: type = converted %int.make_type_32.loc12_17, %.loc12_17.1 [template = i32]
  52. // CHECK:STDOUT: @F.%return: ref i32 = var <return slot>
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT: %import_ref.3: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  55. // CHECK:STDOUT: }
  56. // CHECK:STDOUT:
  57. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  58. // CHECK:STDOUT:
  59. // CHECK:STDOUT: fn @F(%a: i32) -> i32 {
  60. // CHECK:STDOUT: !entry:
  61. // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
  62. // CHECK:STDOUT: %.loc13_21.1: type = value_of_initializer %int.make_type_32 [template = i32]
  63. // CHECK:STDOUT: %.loc13_21.2: type = converted %int.make_type_32, %.loc13_21.1 [template = i32]
  64. // CHECK:STDOUT: %T: type = bind_symbolic_name T 0, %.loc13_21.2 [symbolic = constants.%T]
  65. // CHECK:STDOUT: %T.ref: type = name_ref T, %T [symbolic = constants.%T]
  66. // CHECK:STDOUT: %.loc18: i32 = int_literal 5 [template = constants.%.2]
  67. // CHECK:STDOUT: %x: %T = bind_name x, <error>
  68. // CHECK:STDOUT: %x.ref: %T = name_ref x, %x
  69. // CHECK:STDOUT: return <error>
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT: