| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // RUN: %{explorer} %s 2>&1 | \
- // RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes=false %s
- // RUN: %{explorer} --parser_debug --trace_file=- %s 2>&1 | \
- // RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes %s
- // AUTOUPDATE: %{explorer} %s
- // CHECK: result: 1
- package ExplorerTest api;
- interface Frob {
- let Result:! Type;
- fn F[me: Self]() -> Result;
- }
- fn Use[T:! Frob](x: T) -> T.Result {
- var v: T.Result = x.F();
- return v;
- }
- class AlmostI32 {
- var val: i32;
- impl as ImplicitAs(i32) {
- fn Convert[me: Self]() -> i32 { return me.val; }
- }
- }
- impl i32 as Frob where .Result == AlmostI32 {
- fn F[me: Self]() -> AlmostI32 { return {.val = me}; }
- }
- fn Main() -> i32 {
- // Ensure that lookup for
- // i32.(Frob.Result) as ImplicitAs(i32)
- // finds `impl AlmostI32 as ImplicitAs(i32)`.
- return Use(1);
- }
|