fail_match_in_deduction.carbon 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. // RUN: %{not} %{explorer} %s 2>&1 | \
  6. // RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes=false %s
  7. // RUN: %{not} %{explorer} --parser_debug --trace_file=- %s 2>&1 | \
  8. // RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes %s
  9. // AUTOUPDATE: %{explorer} %s
  10. // TODO: Should this work?
  11. package ExplorerTest api;
  12. interface Vector {
  13. let Dim:! i32;
  14. }
  15. external impl (i32, i32, i32) as Vector where .Dim == 3 {}
  16. class Point(Scalar:! Type, Dim:! i32) {}
  17. fn F[Scalar:! Type, V:! Vector where .Dim == 3](p: Point(Scalar, V.Dim), v: V) {}
  18. fn G[Scalar:! Type](p: Point(Scalar, 3)) {}
  19. fn H[V:! Vector where .Dim == 3](v: V) {
  20. var p: Point(i32, V.Dim) = {};
  21. // CHECK: COMPILATION ERROR: {{.*}}/explorer/testdata/assoc_const/fail_match_in_deduction.carbon:[[@LINE+1]]: mismatch in non-type values, `(V:! Vector where .Self.Dim == 3).Dim` != `3`
  22. G(p);
  23. }
  24. fn Main() -> i32 {
  25. var p: Point(i32, 3) = {};
  26. // Deduce Point(Scalar, V.Dim) from Point(i32, 3).
  27. F(p, (0, 0, 0));
  28. // Deduce Point(Scalar, 3) from Point(i32, V.Dim).
  29. H((0, 0, 0));
  30. return 0;
  31. }