fail_field_modifiers.carbon 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. class Class {
  7. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: ERROR: `default` not allowed on `var` declaration.
  8. // CHECK:STDERR: default var j: i32;
  9. // CHECK:STDERR: ^~~~~~~
  10. // CHECK:STDERR:
  11. default var j: i32;
  12. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: ERROR: `final` not allowed on `var` declaration.
  13. // CHECK:STDERR: final var k: i32;
  14. // CHECK:STDERR: ^~~~~
  15. // CHECK:STDERR:
  16. final var k: i32;
  17. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+4]]:3: ERROR: `default` not allowed on `let` declaration outside of an interface.
  18. // CHECK:STDERR: default let l: i32 = 0;
  19. // CHECK:STDERR: ^~~~~~~
  20. // CHECK:STDERR:
  21. default let l: i32 = 0;
  22. // CHECK:STDERR: fail_field_modifiers.carbon:[[@LINE+3]]:3: ERROR: `final` not allowed on `let` declaration outside of an interface.
  23. // CHECK:STDERR: final let m: i32 = 1;
  24. // CHECK:STDERR: ^~~~~
  25. final let m: i32 = 1;
  26. }
  27. // CHECK:STDOUT: --- fail_field_modifiers.carbon
  28. // CHECK:STDOUT:
  29. // CHECK:STDOUT: constants {
  30. // CHECK:STDOUT: %Class: type = class_type @Class [template]
  31. // CHECK:STDOUT: %Int32: type = fn_type @Int32 [template]
  32. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  33. // CHECK:STDOUT: %struct: Int32 = struct_value () [template]
  34. // CHECK:STDOUT: %.2: type = unbound_element_type Class, i32 [template]
  35. // CHECK:STDOUT: %.3: i32 = int_literal 0 [template]
  36. // CHECK:STDOUT: %.4: i32 = int_literal 1 [template]
  37. // CHECK:STDOUT: %.5: type = struct_type {.j: i32, .k: i32} [template]
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: file {
  41. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  42. // CHECK:STDOUT: .Core = %Core
  43. // CHECK:STDOUT: .Class = %Class.decl
  44. // CHECK:STDOUT: }
  45. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  46. // CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {}
  47. // CHECK:STDOUT: %import_ref.1: Int32 = import_ref ir3, inst+3, loaded [template = constants.%struct]
  48. // CHECK:STDOUT: %import_ref.2: Int32 = import_ref ir3, inst+3, loaded [template = constants.%struct]
  49. // CHECK:STDOUT: %import_ref.3: Int32 = import_ref ir3, inst+3, loaded [template = constants.%struct]
  50. // CHECK:STDOUT: %import_ref.4: Int32 = import_ref ir3, inst+3, loaded [template = constants.%struct]
  51. // CHECK:STDOUT: }
  52. // CHECK:STDOUT:
  53. // CHECK:STDOUT: class @Class {
  54. // CHECK:STDOUT: %int.make_type_32.loc13: init type = call constants.%struct() [template = i32]
  55. // CHECK:STDOUT: %.loc13_18.1: type = value_of_initializer %int.make_type_32.loc13 [template = i32]
  56. // CHECK:STDOUT: %.loc13_18.2: type = converted %int.make_type_32.loc13, %.loc13_18.1 [template = i32]
  57. // CHECK:STDOUT: %.loc13_16: <unbound element of class Class> = field_decl j, element0 [template]
  58. // CHECK:STDOUT: %int.make_type_32.loc19: init type = call constants.%struct() [template = i32]
  59. // CHECK:STDOUT: %.loc19_16.1: type = value_of_initializer %int.make_type_32.loc19 [template = i32]
  60. // CHECK:STDOUT: %.loc19_16.2: type = converted %int.make_type_32.loc19, %.loc19_16.1 [template = i32]
  61. // CHECK:STDOUT: %.loc19_14: <unbound element of class Class> = field_decl k, element1 [template]
  62. // CHECK:STDOUT: %int.make_type_32.loc25: init type = call constants.%struct() [template = i32]
  63. // CHECK:STDOUT: %.loc25_18.1: type = value_of_initializer %int.make_type_32.loc25 [template = i32]
  64. // CHECK:STDOUT: %.loc25_18.2: type = converted %int.make_type_32.loc25, %.loc25_18.1 [template = i32]
  65. // CHECK:STDOUT: %.loc25_24: i32 = int_literal 0 [template = constants.%.3]
  66. // CHECK:STDOUT: %l: i32 = bind_name l, %.loc25_24
  67. // CHECK:STDOUT: %int.make_type_32.loc30: init type = call constants.%struct() [template = i32]
  68. // CHECK:STDOUT: %.loc30_16.1: type = value_of_initializer %int.make_type_32.loc30 [template = i32]
  69. // CHECK:STDOUT: %.loc30_16.2: type = converted %int.make_type_32.loc30, %.loc30_16.1 [template = i32]
  70. // CHECK:STDOUT: %.loc30_22: i32 = int_literal 1 [template = constants.%.4]
  71. // CHECK:STDOUT: %m: i32 = bind_name m, %.loc30_22
  72. // CHECK:STDOUT:
  73. // CHECK:STDOUT: !members:
  74. // CHECK:STDOUT: .Self = constants.%Class
  75. // CHECK:STDOUT: .j = %.loc13_16
  76. // CHECK:STDOUT: .k = %.loc19_14
  77. // CHECK:STDOUT: }
  78. // CHECK:STDOUT:
  79. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  80. // CHECK:STDOUT: