duplicate_name_same_line.carbon 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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/ir/duplicate_name_same_line.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/ir/duplicate_name_same_line.carbon
  10. fn A() { if (true) { var n: i32 = 1; } if (true) { var n: i32 = 2; } }
  11. // CHECK:STDOUT: --- duplicate_name_same_line.carbon
  12. // CHECK:STDOUT:
  13. // CHECK:STDOUT: constants {
  14. // CHECK:STDOUT: %A.type: type = fn_type @A [template]
  15. // CHECK:STDOUT: %A: %A.type = struct_value () [template]
  16. // CHECK:STDOUT: %.1: bool = bool_literal true [template]
  17. // CHECK:STDOUT: %.2: Core.IntLiteral = int_value 32 [template]
  18. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  19. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  20. // CHECK:STDOUT: %i32: type = int_type signed, %.2 [template]
  21. // CHECK:STDOUT: %.3: Core.IntLiteral = int_value 1 [template]
  22. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  23. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.2) [template]
  24. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  25. // CHECK:STDOUT: %.23: <witness> = interface_witness (%Convert.14) [template]
  26. // CHECK:STDOUT: %.24: <bound method> = bound_method %.3, %Convert.14 [template]
  27. // CHECK:STDOUT: %.25: <specific function> = specific_function %.24, @Convert.2(%.2) [template]
  28. // CHECK:STDOUT: %.26: %i32 = int_value 1 [template]
  29. // CHECK:STDOUT: %.27: Core.IntLiteral = int_value 2 [template]
  30. // CHECK:STDOUT: %.28: <bound method> = bound_method %.27, %Convert.14 [template]
  31. // CHECK:STDOUT: %.29: <specific function> = specific_function %.28, @Convert.2(%.2) [template]
  32. // CHECK:STDOUT: %.30: %i32 = int_value 2 [template]
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT:
  35. // CHECK:STDOUT: imports {
  36. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  37. // CHECK:STDOUT: .Int = %import_ref.1
  38. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  39. // CHECK:STDOUT: import Core//prelude
  40. // CHECK:STDOUT: import Core//prelude/...
  41. // CHECK:STDOUT: }
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: file {
  45. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  46. // CHECK:STDOUT: .Core = imports.%Core
  47. // CHECK:STDOUT: .A = %A.decl
  48. // CHECK:STDOUT: }
  49. // CHECK:STDOUT: %Core.import = import Core
  50. // CHECK:STDOUT: %A.decl: %A.type = fn_decl @A [template = constants.%A] {} {}
  51. // CHECK:STDOUT: }
  52. // CHECK:STDOUT:
  53. // CHECK:STDOUT: fn @A() {
  54. // CHECK:STDOUT: !entry:
  55. // CHECK:STDOUT: %.loc11_14: bool = bool_literal true [template = constants.%.1]
  56. // CHECK:STDOUT: if %.loc11_14 br !if.then.loc11_18 else br !if.else.loc11_18
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: !if.then.loc11_18:
  59. // CHECK:STDOUT: %.loc11_29.1: Core.IntLiteral = int_value 32 [template = constants.%.2]
  60. // CHECK:STDOUT: %int.make_type_signed.loc11_29: init type = call constants.%Int(%.loc11_29.1) [template = constants.%i32]
  61. // CHECK:STDOUT: %.loc11_29.2: type = value_of_initializer %int.make_type_signed.loc11_29 [template = constants.%i32]
  62. // CHECK:STDOUT: %.loc11_29.3: type = converted %int.make_type_signed.loc11_29, %.loc11_29.2 [template = constants.%i32]
  63. // CHECK:STDOUT: %n.var.loc11_26: ref %i32 = var n
  64. // CHECK:STDOUT: %n.loc11_26: ref %i32 = bind_name n, %n.var.loc11_26
  65. // CHECK:STDOUT: %.loc11_35: Core.IntLiteral = int_value 1 [template = constants.%.3]
  66. // CHECK:STDOUT: %.loc11_36.1: %Convert.type.2 = interface_witness_access constants.%.23, element0 [template = constants.%Convert.14]
  67. // CHECK:STDOUT: %.loc11_36.2: <bound method> = bound_method %.loc11_35, %.loc11_36.1 [template = constants.%.24]
  68. // CHECK:STDOUT: %.loc11_36.3: <specific function> = specific_function %.loc11_36.2, @Convert.2(constants.%.2) [template = constants.%.25]
  69. // CHECK:STDOUT: %int.convert_checked.loc11_36: init %i32 = call %.loc11_36.3(%.loc11_35) [template = constants.%.26]
  70. // CHECK:STDOUT: %.loc11_36.4: init %i32 = converted %.loc11_35, %int.convert_checked.loc11_36 [template = constants.%.26]
  71. // CHECK:STDOUT: assign %n.var.loc11_26, %.loc11_36.4
  72. // CHECK:STDOUT: br !if.else.loc11_18
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: !if.else.loc11_18:
  75. // CHECK:STDOUT: %.loc11_44: bool = bool_literal true [template = constants.%.1]
  76. // CHECK:STDOUT: if %.loc11_44 br !if.then.loc11_48 else br !if.else.loc11_48
  77. // CHECK:STDOUT:
  78. // CHECK:STDOUT: !if.then.loc11_48:
  79. // CHECK:STDOUT: %.loc11_59.1: Core.IntLiteral = int_value 32 [template = constants.%.2]
  80. // CHECK:STDOUT: %int.make_type_signed.loc11_59: init type = call constants.%Int(%.loc11_59.1) [template = constants.%i32]
  81. // CHECK:STDOUT: %.loc11_59.2: type = value_of_initializer %int.make_type_signed.loc11_59 [template = constants.%i32]
  82. // CHECK:STDOUT: %.loc11_59.3: type = converted %int.make_type_signed.loc11_59, %.loc11_59.2 [template = constants.%i32]
  83. // CHECK:STDOUT: %n.var.loc11_56: ref %i32 = var n
  84. // CHECK:STDOUT: %n.loc11_56: ref %i32 = bind_name n, %n.var.loc11_56
  85. // CHECK:STDOUT: %.loc11_65: Core.IntLiteral = int_value 2 [template = constants.%.27]
  86. // CHECK:STDOUT: %.loc11_66.1: %Convert.type.2 = interface_witness_access constants.%.23, element0 [template = constants.%Convert.14]
  87. // CHECK:STDOUT: %.loc11_66.2: <bound method> = bound_method %.loc11_65, %.loc11_66.1 [template = constants.%.28]
  88. // CHECK:STDOUT: %.loc11_66.3: <specific function> = specific_function %.loc11_66.2, @Convert.2(constants.%.2) [template = constants.%.29]
  89. // CHECK:STDOUT: %int.convert_checked.loc11_66: init %i32 = call %.loc11_66.3(%.loc11_65) [template = constants.%.30]
  90. // CHECK:STDOUT: %.loc11_66.4: init %i32 = converted %.loc11_65, %int.convert_checked.loc11_66 [template = constants.%.30]
  91. // CHECK:STDOUT: assign %n.var.loc11_56, %.loc11_66.4
  92. // CHECK:STDOUT: br !if.else.loc11_48
  93. // CHECK:STDOUT:
  94. // CHECK:STDOUT: !if.else.loc11_48:
  95. // CHECK:STDOUT: return
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT: