fail_field_modifiers.carbon 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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: %int_32: Core.IntLiteral = int_value 32 [template]
  36. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  37. // CHECK:STDOUT: %Class.elem: type = unbound_element_type %Class, %i32 [template]
  38. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [template]
  39. // CHECK:STDOUT: %Convert.type.cd1: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  40. // CHECK:STDOUT: %impl_witness.5b0: <witness> = impl_witness (imports.%import_ref.723), @impl.1(%int_32) [template]
  41. // CHECK:STDOUT: %Convert.type.466: type = fn_type @Convert.2, @impl.1(%int_32) [template]
  42. // CHECK:STDOUT: %Convert.925: %Convert.type.466 = struct_value () [template]
  43. // CHECK:STDOUT: %Convert.bound.b41: <bound method> = bound_method %int_0.5c6, %Convert.925 [template]
  44. // CHECK:STDOUT: %Convert.specific_fn.c35: <specific function> = specific_function %Convert.bound.b41, @Convert.2(%int_32) [template]
  45. // CHECK:STDOUT: %int_0.f61: %i32 = int_value 0 [template]
  46. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [template]
  47. // CHECK:STDOUT: %Convert.bound.afd: <bound method> = bound_method %int_1.5b8, %Convert.925 [template]
  48. // CHECK:STDOUT: %Convert.specific_fn.b73: <specific function> = specific_function %Convert.bound.afd, @Convert.2(%int_32) [template]
  49. // CHECK:STDOUT: %int_1.c60: %i32 = int_value 1 [template]
  50. // CHECK:STDOUT: %struct_type.j.k: type = struct_type {.j: %i32, .k: %i32} [template]
  51. // CHECK:STDOUT: %complete_type.f45: <witness> = complete_type_witness %struct_type.j.k [template]
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT:
  54. // CHECK:STDOUT: imports {
  55. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  56. // CHECK:STDOUT: .Int = %import_ref.187
  57. // CHECK:STDOUT: .ImplicitAs = %import_ref.a69
  58. // CHECK:STDOUT: import Core//prelude
  59. // CHECK:STDOUT: import Core//prelude/...
  60. // CHECK:STDOUT: }
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: file {
  64. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  65. // CHECK:STDOUT: .Core = imports.%Core
  66. // CHECK:STDOUT: .Class = %Class.decl
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT: %Core.import = import Core
  69. // CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {} {}
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: class @Class {
  73. // CHECK:STDOUT: %.loc17: %Class.elem = field_decl j, element0 [template]
  74. // CHECK:STDOUT: %.loc23: %Class.elem = field_decl k, element1 [template]
  75. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  76. // CHECK:STDOUT: %impl.elem0.loc29: %Convert.type.cd1 = impl_witness_access constants.%impl_witness.5b0, element0 [template = constants.%Convert.925]
  77. // CHECK:STDOUT: %Convert.bound.loc29: <bound method> = bound_method %int_0, %impl.elem0.loc29 [template = constants.%Convert.bound.b41]
  78. // CHECK:STDOUT: %Convert.specific_fn.loc29: <specific function> = specific_function %Convert.bound.loc29, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.c35]
  79. // CHECK:STDOUT: %int.convert_checked.loc29: init %i32 = call %Convert.specific_fn.loc29(%int_0) [template = constants.%int_0.f61]
  80. // CHECK:STDOUT: %.loc29_25.1: %i32 = value_of_initializer %int.convert_checked.loc29 [template = constants.%int_0.f61]
  81. // CHECK:STDOUT: %.loc29_25.2: %i32 = converted %int_0, %.loc29_25.1 [template = constants.%int_0.f61]
  82. // CHECK:STDOUT: %l: %i32 = bind_name l, %.loc29_25.2
  83. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  84. // CHECK:STDOUT: %impl.elem0.loc34: %Convert.type.cd1 = impl_witness_access constants.%impl_witness.5b0, element0 [template = constants.%Convert.925]
  85. // CHECK:STDOUT: %Convert.bound.loc34: <bound method> = bound_method %int_1, %impl.elem0.loc34 [template = constants.%Convert.bound.afd]
  86. // CHECK:STDOUT: %Convert.specific_fn.loc34: <specific function> = specific_function %Convert.bound.loc34, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.b73]
  87. // CHECK:STDOUT: %int.convert_checked.loc34: init %i32 = call %Convert.specific_fn.loc34(%int_1) [template = constants.%int_1.c60]
  88. // CHECK:STDOUT: %.loc34_23.1: %i32 = value_of_initializer %int.convert_checked.loc34 [template = constants.%int_1.c60]
  89. // CHECK:STDOUT: %.loc34_23.2: %i32 = converted %int_1, %.loc34_23.1 [template = constants.%int_1.c60]
  90. // CHECK:STDOUT: %m: %i32 = bind_name m, %.loc34_23.2
  91. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %struct_type.j.k [template = constants.%complete_type.f45]
  92. // CHECK:STDOUT:
  93. // CHECK:STDOUT: !members:
  94. // CHECK:STDOUT: .Self = constants.%Class
  95. // CHECK:STDOUT: .j = %.loc17
  96. // CHECK:STDOUT: .k = %.loc23
  97. // CHECK:STDOUT: .l = %l
  98. // CHECK:STDOUT: .m = %m
  99. // CHECK:STDOUT: complete_type_witness = %complete_type
  100. // CHECK:STDOUT: }
  101. // CHECK:STDOUT: