fail_duplicate_name.carbon 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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/struct/fail_duplicate_name.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/struct/fail_duplicate_name.carbon
  10. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+7]]:42: error: duplicated field name `abc` in struct type literal [StructNameDuplicate]
  11. // CHECK:STDERR: fn F() -> {.d: i32, .abc: i32, .e: i32, .abc: i32, .f: i32};
  12. // CHECK:STDERR: ^~~
  13. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+4]]:22: note: field with the same name here [StructNamePrevious]
  14. // CHECK:STDERR: fn F() -> {.d: i32, .abc: i32, .e: i32, .abc: i32, .f: i32};
  15. // CHECK:STDERR: ^~~
  16. // CHECK:STDERR:
  17. fn F() -> {.d: i32, .abc: i32, .e: i32, .abc: i32, .f: i32};
  18. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+7]]:19: error: duplicated field name `a` in struct type literal [StructNameDuplicate]
  19. // CHECK:STDERR: let v: {.a: i32, .a: i32} = {.a = 1};
  20. // CHECK:STDERR: ^
  21. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+4]]:10: note: field with the same name here [StructNamePrevious]
  22. // CHECK:STDERR: let v: {.a: i32, .a: i32} = {.a = 1};
  23. // CHECK:STDERR: ^
  24. // CHECK:STDERR:
  25. let v: {.a: i32, .a: i32} = {.a = 1};
  26. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+7]]:26: error: duplicated field name `def` in struct literal [StructNameDuplicate]
  27. // CHECK:STDERR: let w: i32 = {.def = 1, .def = 2}.def;
  28. // CHECK:STDERR: ^~~
  29. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+4]]:16: note: field with the same name here [StructNamePrevious]
  30. // CHECK:STDERR: let w: i32 = {.def = 1, .def = 2}.def;
  31. // CHECK:STDERR: ^~~
  32. // CHECK:STDERR:
  33. let w: i32 = {.def = 1, .def = 2}.def;
  34. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+7]]:30: error: duplicated field name `a` in struct literal [StructNameDuplicate]
  35. // CHECK:STDERR: var x: {.a: i32} = {.a = 1, .a = 2};
  36. // CHECK:STDERR: ^
  37. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+4]]:22: note: field with the same name here [StructNamePrevious]
  38. // CHECK:STDERR: var x: {.a: i32} = {.a = 1, .a = 2};
  39. // CHECK:STDERR: ^
  40. // CHECK:STDERR:
  41. var x: {.a: i32} = {.a = 1, .a = 2};
  42. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+6]]:39: error: duplicated field name `b` in struct literal [StructNameDuplicate]
  43. // CHECK:STDERR: var y: {.b: i32, .c: i32} = {.b = 3, .b = 4};
  44. // CHECK:STDERR: ^
  45. // CHECK:STDERR: fail_duplicate_name.carbon:[[@LINE+3]]:31: note: field with the same name here [StructNamePrevious]
  46. // CHECK:STDERR: var y: {.b: i32, .c: i32} = {.b = 3, .b = 4};
  47. // CHECK:STDERR: ^
  48. var y: {.b: i32, .c: i32} = {.b = 3, .b = 4};
  49. // CHECK:STDOUT: --- fail_duplicate_name.carbon
  50. // CHECK:STDOUT:
  51. // CHECK:STDOUT: constants {
  52. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  53. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  54. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  55. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  56. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template]
  57. // CHECK:STDOUT: %struct_type.a.a6c: type = struct_type {.a: Core.IntLiteral} [template]
  58. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [template]
  59. // CHECK:STDOUT: %struct_type.a.7cc: type = struct_type {.a: %i32} [template]
  60. // CHECK:STDOUT: %struct_type.b.c: type = struct_type {.b: %i32, .c: %i32} [template]
  61. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [template]
  62. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [template]
  63. // CHECK:STDOUT: }
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: imports {
  66. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  67. // CHECK:STDOUT: .Int = %import_ref.187
  68. // CHECK:STDOUT: import Core//prelude
  69. // CHECK:STDOUT: import Core//prelude/...
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT: }
  72. // CHECK:STDOUT:
  73. // CHECK:STDOUT: file {
  74. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  75. // CHECK:STDOUT: .Core = imports.%Core
  76. // CHECK:STDOUT: .F = %F.decl
  77. // CHECK:STDOUT: .v = @__global_init.%v
  78. // CHECK:STDOUT: .w = @__global_init.%w
  79. // CHECK:STDOUT: .x = %x
  80. // CHECK:STDOUT: .y = %y
  81. // CHECK:STDOUT: }
  82. // CHECK:STDOUT: %Core.import = import Core
  83. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  84. // CHECK:STDOUT: %return.patt: <error> = return_slot_pattern
  85. // CHECK:STDOUT: %return.param_patt: <error> = out_param_pattern %return.patt, runtime_param0
  86. // CHECK:STDOUT: } {
  87. // CHECK:STDOUT: %int_32.loc18_16: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  88. // CHECK:STDOUT: %i32.loc18_16: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  89. // CHECK:STDOUT: %int_32.loc18_27: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  90. // CHECK:STDOUT: %i32.loc18_27: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  91. // CHECK:STDOUT: %int_32.loc18_36: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  92. // CHECK:STDOUT: %i32.loc18_36: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  93. // CHECK:STDOUT: %int_32.loc18_47: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  94. // CHECK:STDOUT: %i32.loc18_47: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  95. // CHECK:STDOUT: %int_32.loc18_56: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  96. // CHECK:STDOUT: %i32.loc18_56: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  97. // CHECK:STDOUT: %return.param: ref <error> = out_param runtime_param0
  98. // CHECK:STDOUT: %return: ref <error> = return_slot %return.param
  99. // CHECK:STDOUT: }
  100. // CHECK:STDOUT: %x.var: ref %struct_type.a.7cc = var x
  101. // CHECK:STDOUT: %x: ref %struct_type.a.7cc = bind_name x, %x.var
  102. // CHECK:STDOUT: %y.var: ref %struct_type.b.c = var y
  103. // CHECK:STDOUT: %y: ref %struct_type.b.c = bind_name y, %y.var
  104. // CHECK:STDOUT: }
  105. // CHECK:STDOUT:
  106. // CHECK:STDOUT: fn @F() -> <error>;
  107. // CHECK:STDOUT:
  108. // CHECK:STDOUT: fn @__global_init() {
  109. // CHECK:STDOUT: !entry:
  110. // CHECK:STDOUT: %int_1.loc27: Core.IntLiteral = int_value 1 [template = constants.%int_1]
  111. // CHECK:STDOUT: %.loc27: %struct_type.a.a6c = struct_literal (%int_1.loc27)
  112. // CHECK:STDOUT: %v: <error> = bind_name v, <error>
  113. // CHECK:STDOUT: %int_1.loc36: Core.IntLiteral = int_value 1 [template = constants.%int_1]
  114. // CHECK:STDOUT: %int_2.loc36: Core.IntLiteral = int_value 2 [template = constants.%int_2]
  115. // CHECK:STDOUT: %def.ref: <error> = name_ref def, <error> [template = <error>]
  116. // CHECK:STDOUT: %w: %i32 = bind_name w, <error>
  117. // CHECK:STDOUT: %int_1.loc45: Core.IntLiteral = int_value 1 [template = constants.%int_1]
  118. // CHECK:STDOUT: %int_2.loc45: Core.IntLiteral = int_value 2 [template = constants.%int_2]
  119. // CHECK:STDOUT: assign file.%x.var, <error>
  120. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [template = constants.%int_3]
  121. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [template = constants.%int_4]
  122. // CHECK:STDOUT: assign file.%y.var, <error>
  123. // CHECK:STDOUT: return
  124. // CHECK:STDOUT: }
  125. // CHECK:STDOUT: