fail_field_modifiers.carbon 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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/class/fail_field_modifiers.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/fail_field_modifiers.carbon
  10. class Class {
  11. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: error: `default` not allowed on `var` declaration [ModifierNotAllowedOnDeclaration]
  12. // CHECK:STDERR: default var j: i32;
  13. // CHECK:STDERR: ^~~~~~~
  14. // CHECK:STDERR:
  15. default var j: i32;
  16. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: error: `final` not allowed on `var` declaration [ModifierNotAllowedOnDeclaration]
  17. // CHECK:STDERR: final var k: i32;
  18. // CHECK:STDERR: ^~~~~
  19. // CHECK:STDERR:
  20. final var k: i32;
  21. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: error: `default` not allowed; requires interface scope [ModifierRequiresInterface]
  22. // CHECK:STDERR: default let l: i32 = 0;
  23. // CHECK:STDERR: ^~~~~~~
  24. // CHECK:STDERR:
  25. default let l: i32 = 0;
  26. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+3]]:3: error: `final` not allowed; requires interface scope [ModifierRequiresInterface]
  27. // CHECK:STDERR: final let m: i32 = 1;
  28. // CHECK:STDERR: ^~~~~
  29. final let m: i32 = 1;
  30. }
  31. // CHECK:STDOUT: --- fail_field_modifiers.carbon
  32. // CHECK:STDOUT:
  33. // CHECK:STDOUT: constants {
  34. // CHECK:STDOUT: %Class: type = class_type @Class [template]
  35. // CHECK:STDOUT: %.1: Core.IntLiteral = int_value 32 [template]
  36. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  37. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  38. // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template]
  39. // CHECK:STDOUT: %.2: type = unbound_element_type %Class, %i32 [template]
  40. // CHECK:STDOUT: %.3: Core.IntLiteral = int_value 0 [template]
  41. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  42. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template]
  43. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  44. // CHECK:STDOUT: %.23: <witness> = interface_witness (%Convert.14) [template]
  45. // CHECK:STDOUT: %.24: <bound method> = bound_method %.3, %Convert.14 [template]
  46. // CHECK:STDOUT: %.25: <specific function> = specific_function %.24, @Convert.2(%.1) [template]
  47. // CHECK:STDOUT: %.26: %i32 = int_value 0 [template]
  48. // CHECK:STDOUT: %.27: Core.IntLiteral = int_value 1 [template]
  49. // CHECK:STDOUT: %.28: <bound method> = bound_method %.27, %Convert.14 [template]
  50. // CHECK:STDOUT: %.29: <specific function> = specific_function %.28, @Convert.2(%.1) [template]
  51. // CHECK:STDOUT: %.30: %i32 = int_value 1 [template]
  52. // CHECK:STDOUT: %.31: type = struct_type {.j: %i32, .k: %i32} [template]
  53. // CHECK:STDOUT: %.32: <witness> = complete_type_witness %.31 [template]
  54. // CHECK:STDOUT: }
  55. // CHECK:STDOUT:
  56. // CHECK:STDOUT: imports {
  57. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  58. // CHECK:STDOUT: .Int = %import_ref.1
  59. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  60. // CHECK:STDOUT: import Core//prelude
  61. // CHECK:STDOUT: import Core//prelude/...
  62. // CHECK:STDOUT: }
  63. // CHECK:STDOUT: }
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: file {
  66. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  67. // CHECK:STDOUT: .Core = imports.%Core
  68. // CHECK:STDOUT: .Class = %Class.decl
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT: %Core.import = import Core
  71. // CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {} {}
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: class @Class {
  75. // CHECK:STDOUT: %.loc17_18.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  76. // CHECK:STDOUT: %int.make_type_signed.loc17: init type = call constants.%Int(%.loc17_18.1) [template = constants.%i32]
  77. // CHECK:STDOUT: %.loc17_18.2: type = value_of_initializer %int.make_type_signed.loc17 [template = constants.%i32]
  78. // CHECK:STDOUT: %.loc17_18.3: type = converted %int.make_type_signed.loc17, %.loc17_18.2 [template = constants.%i32]
  79. // CHECK:STDOUT: %.loc17_16: %.2 = field_decl j, element0 [template]
  80. // CHECK:STDOUT: %.loc23_16.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  81. // CHECK:STDOUT: %int.make_type_signed.loc23: init type = call constants.%Int(%.loc23_16.1) [template = constants.%i32]
  82. // CHECK:STDOUT: %.loc23_16.2: type = value_of_initializer %int.make_type_signed.loc23 [template = constants.%i32]
  83. // CHECK:STDOUT: %.loc23_16.3: type = converted %int.make_type_signed.loc23, %.loc23_16.2 [template = constants.%i32]
  84. // CHECK:STDOUT: %.loc23_14: %.2 = field_decl k, element1 [template]
  85. // CHECK:STDOUT: %.loc29_18.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  86. // CHECK:STDOUT: %int.make_type_signed.loc29: init type = call constants.%Int(%.loc29_18.1) [template = constants.%i32]
  87. // CHECK:STDOUT: %.loc29_18.2: type = value_of_initializer %int.make_type_signed.loc29 [template = constants.%i32]
  88. // CHECK:STDOUT: %.loc29_18.3: type = converted %int.make_type_signed.loc29, %.loc29_18.2 [template = constants.%i32]
  89. // CHECK:STDOUT: %.loc29_24: Core.IntLiteral = int_value 0 [template = constants.%.3]
  90. // CHECK:STDOUT: %.loc29_25.1: %Convert.type.2 = interface_witness_access constants.%.23, element0 [template = constants.%Convert.14]
  91. // CHECK:STDOUT: %.loc29_25.2: <bound method> = bound_method %.loc29_24, %.loc29_25.1 [template = constants.%.24]
  92. // CHECK:STDOUT: %.loc29_25.3: <specific function> = specific_function %.loc29_25.2, @Convert.2(constants.%.1) [template = constants.%.25]
  93. // CHECK:STDOUT: %int.convert_checked.loc29: init %i32 = call %.loc29_25.3(%.loc29_24) [template = constants.%.26]
  94. // CHECK:STDOUT: %.loc29_25.4: %i32 = value_of_initializer %int.convert_checked.loc29 [template = constants.%.26]
  95. // CHECK:STDOUT: %.loc29_25.5: %i32 = converted %.loc29_24, %.loc29_25.4 [template = constants.%.26]
  96. // CHECK:STDOUT: %l: %i32 = bind_name l, %.loc29_25.5
  97. // CHECK:STDOUT: %.loc34_16.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  98. // CHECK:STDOUT: %int.make_type_signed.loc34: init type = call constants.%Int(%.loc34_16.1) [template = constants.%i32]
  99. // CHECK:STDOUT: %.loc34_16.2: type = value_of_initializer %int.make_type_signed.loc34 [template = constants.%i32]
  100. // CHECK:STDOUT: %.loc34_16.3: type = converted %int.make_type_signed.loc34, %.loc34_16.2 [template = constants.%i32]
  101. // CHECK:STDOUT: %.loc34_22: Core.IntLiteral = int_value 1 [template = constants.%.27]
  102. // CHECK:STDOUT: %.loc34_23.1: %Convert.type.2 = interface_witness_access constants.%.23, element0 [template = constants.%Convert.14]
  103. // CHECK:STDOUT: %.loc34_23.2: <bound method> = bound_method %.loc34_22, %.loc34_23.1 [template = constants.%.28]
  104. // CHECK:STDOUT: %.loc34_23.3: <specific function> = specific_function %.loc34_23.2, @Convert.2(constants.%.1) [template = constants.%.29]
  105. // CHECK:STDOUT: %int.convert_checked.loc34: init %i32 = call %.loc34_23.3(%.loc34_22) [template = constants.%.30]
  106. // CHECK:STDOUT: %.loc34_23.4: %i32 = value_of_initializer %int.convert_checked.loc34 [template = constants.%.30]
  107. // CHECK:STDOUT: %.loc34_23.5: %i32 = converted %.loc34_22, %.loc34_23.4 [template = constants.%.30]
  108. // CHECK:STDOUT: %m: %i32 = bind_name m, %.loc34_23.5
  109. // CHECK:STDOUT: %.loc35: <witness> = complete_type_witness %.31 [template = constants.%.32]
  110. // CHECK:STDOUT:
  111. // CHECK:STDOUT: !members:
  112. // CHECK:STDOUT: .Self = constants.%Class
  113. // CHECK:STDOUT: .j = %.loc17_16
  114. // CHECK:STDOUT: .k = %.loc23_14
  115. // CHECK:STDOUT: .l = %l
  116. // CHECK:STDOUT: .m = %m
  117. // CHECK:STDOUT: }
  118. // CHECK:STDOUT: