fail_decl_in_alias.carbon 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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: %Int32.type: type = fn_type @Int32 [template]
  24. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  25. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  26. // CHECK:STDOUT: %.type: type = fn_type @.1 [template]
  27. // CHECK:STDOUT: %.2: %.type = struct_value () [template]
  28. // CHECK:STDOUT: %.3: i32 = int_value 0 [template]
  29. // CHECK:STDOUT: }
  30. // CHECK:STDOUT:
  31. // CHECK:STDOUT: imports {
  32. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  33. // CHECK:STDOUT: .Int32 = %import_ref
  34. // CHECK:STDOUT: import Core//prelude
  35. // CHECK:STDOUT: import Core//prelude/...
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT: %import_ref: %Int32.type = import_ref Core//prelude/types, inst+15, loaded [template = constants.%Int32]
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: file {
  41. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  42. // CHECK:STDOUT: .Core = imports.%Core
  43. // CHECK:STDOUT: .NS = %NS
  44. // CHECK:STDOUT: .ns = %ns
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT: %Core.import = import Core
  47. // CHECK:STDOUT: %NS: <namespace> = namespace [template] {}
  48. // CHECK:STDOUT: %NS.ref: <namespace> = name_ref NS, %NS [template = %NS]
  49. // CHECK:STDOUT: %ns: <namespace> = bind_alias ns, %NS [template = %NS]
  50. // CHECK:STDOUT: %.decl: %.type = fn_decl @.1 [template = constants.%.2] {
  51. // CHECK:STDOUT: %return.patt: i32 = return_slot_pattern
  52. // CHECK:STDOUT: %return.param_patt: i32 = out_param_pattern %return.patt, runtime_param0
  53. // CHECK:STDOUT: } {
  54. // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
  55. // CHECK:STDOUT: %.loc22_14.1: type = value_of_initializer %int.make_type_32 [template = i32]
  56. // CHECK:STDOUT: %.loc22_14.2: type = converted %int.make_type_32, %.loc22_14.1 [template = i32]
  57. // CHECK:STDOUT: %return.param: ref i32 = out_param runtime_param0
  58. // CHECK:STDOUT: %return: ref i32 = return_slot %return.param
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT: }
  61. // CHECK:STDOUT:
  62. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: fn @.1() -> i32 {
  65. // CHECK:STDOUT: !entry:
  66. // CHECK:STDOUT: %.loc22_27: i32 = int_value 0 [template = constants.%.3]
  67. // CHECK:STDOUT: return %.loc22_27
  68. // CHECK:STDOUT: }
  69. // CHECK:STDOUT: