fail_decl_in_alias.carbon 4.8 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. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/namespace/fail_decl_in_alias.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/namespace/fail_decl_in_alias.carbon
  10. namespace NS;
  11. alias ns = NS;
  12. // Aliases can't be used when declaring names.
  13. // CHECK:STDERR: fail_decl_in_alias.carbon:[[@LINE+6]]:4: error: name qualifiers are only allowed for entities that provide a scope [QualifiedNameInNonScope]
  14. // CHECK:STDERR: fn ns.A() -> i32 { return 0; }
  15. // CHECK:STDERR: ^~
  16. // CHECK:STDERR: fail_decl_in_alias.carbon:[[@LINE-6]]:7: note: referenced non-scope entity declared here [QualifiedNameNonScopeEntity]
  17. // CHECK:STDERR: alias ns = NS;
  18. // CHECK:STDERR: ^~
  19. fn ns.A() -> i32 { return 0; }
  20. // CHECK:STDOUT: --- fail_decl_in_alias.carbon
  21. // CHECK:STDOUT:
  22. // CHECK:STDOUT: constants {
  23. // CHECK:STDOUT: %.1: Core.IntLiteral = int_value 32 [template]
  24. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  25. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  26. // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template]
  27. // CHECK:STDOUT: %.type: type = fn_type @.1 [template]
  28. // CHECK:STDOUT: %.2: %.type = struct_value () [template]
  29. // CHECK:STDOUT: %.3: Core.IntLiteral = int_value 0 [template]
  30. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  31. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template]
  32. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  33. // CHECK:STDOUT: %.23: <witness> = interface_witness (%Convert.14) [template]
  34. // CHECK:STDOUT: %.24: <bound method> = bound_method %.3, %Convert.14 [template]
  35. // CHECK:STDOUT: %.25: <specific function> = specific_function %.24, @Convert.2(%.1) [template]
  36. // CHECK:STDOUT: %.26: %i32 = int_value 0 [template]
  37. // CHECK:STDOUT: }
  38. // CHECK:STDOUT:
  39. // CHECK:STDOUT: imports {
  40. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  41. // CHECK:STDOUT: .Int = %import_ref.1
  42. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  43. // CHECK:STDOUT: import Core//prelude
  44. // CHECK:STDOUT: import Core//prelude/...
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT: }
  47. // CHECK:STDOUT:
  48. // CHECK:STDOUT: file {
  49. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  50. // CHECK:STDOUT: .Core = imports.%Core
  51. // CHECK:STDOUT: .NS = %NS
  52. // CHECK:STDOUT: .ns = %ns
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT: %Core.import = import Core
  55. // CHECK:STDOUT: %NS: <namespace> = namespace [template] {}
  56. // CHECK:STDOUT: %NS.ref: <namespace> = name_ref NS, %NS [template = %NS]
  57. // CHECK:STDOUT: %ns: <namespace> = bind_alias ns, %NS [template = %NS]
  58. // CHECK:STDOUT: %.decl: %.type = fn_decl @.1 [template = constants.%.2] {
  59. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  60. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  61. // CHECK:STDOUT: } {
  62. // CHECK:STDOUT: %.loc22_14.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  63. // CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%.loc22_14.1) [template = constants.%i32]
  64. // CHECK:STDOUT: %.loc22_14.2: type = value_of_initializer %int.make_type_signed [template = constants.%i32]
  65. // CHECK:STDOUT: %.loc22_14.3: type = converted %int.make_type_signed, %.loc22_14.2 [template = constants.%i32]
  66. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  67. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  68. // CHECK:STDOUT: }
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: fn @.1() -> %i32 {
  72. // CHECK:STDOUT: !entry:
  73. // CHECK:STDOUT: %.loc22_27: Core.IntLiteral = int_value 0 [template = constants.%.3]
  74. // CHECK:STDOUT: %.loc22_28.1: %Convert.type.2 = interface_witness_access constants.%.23, element0 [template = constants.%Convert.14]
  75. // CHECK:STDOUT: %.loc22_28.2: <bound method> = bound_method %.loc22_27, %.loc22_28.1 [template = constants.%.24]
  76. // CHECK:STDOUT: %.loc22_28.3: <specific function> = specific_function %.loc22_28.2, @Convert.2(constants.%.1) [template = constants.%.25]
  77. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc22_28.3(%.loc22_27) [template = constants.%.26]
  78. // CHECK:STDOUT: %.loc22_28.4: %i32 = value_of_initializer %int.convert_checked [template = constants.%.26]
  79. // CHECK:STDOUT: %.loc22_28.5: %i32 = converted %.loc22_27, %.loc22_28.4 [template = constants.%.26]
  80. // CHECK:STDOUT: return %.loc22_28.5
  81. // CHECK:STDOUT: }
  82. // CHECK:STDOUT: