| 123456789101112131415161718192021222324252627282930313233 |
- // 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
- //
- // AUTOUPDATE
- package ExplorerTest api;
- interface Container {
- let Element:! type;
- fn Front[self: Self]() -> Element;
- }
- fn A[T:! Container where .Element == i32](x: T) -> T.Element {
- return x.Front();
- }
- fn B[T:! Container where .Element = i32](x: T) -> T.Element {
- return A(x);
- }
- impl (i32, i32) as Container where .Element = i32 {
- fn Front[self: Self]() -> i32 {
- let (a: i32, b: i32) = self;
- return a;
- }
- }
- fn Main() -> i32 {
- return B((1, 2));
- }
- // CHECK:STDOUT: result: 1
|