fail_qualified_non_member.carbon 621 B

123456789101112131415
  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. package Foo api;
  7. fn F[self: i32]() {}
  8. fn Main() -> i32 {
  9. // TODO: It's unclear whether this is valid per the current rules. See
  10. // https://github.com/carbon-language/carbon-lang/pull/1122
  11. // CHECK:STDERR: COMPILATION ERROR: fail_qualified_non_member.carbon:[[@LINE+1]]: expected name of instance member or interface member in compound member access, found fn [self: i32]() -> ()
  12. 42.(F)();
  13. return 0;
  14. }