| 1234567891011121314151617181920212223242526272829 |
- // 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
- //
- // NOAUTOUPDATE
- package ExplorerTest api;
- interface HasAssoc {
- let Assoc:! type;
- }
- class X {
- impl as HasAssoc where .Assoc = i32 {}
- }
- alias WithoutRewrite = HasAssoc where .Assoc == i32;
- alias WithRewrite = HasAssoc where .Assoc = i32;
- fn F[T:! WithRewrite](x: T) -> i32 {
- var a: T.(WithoutRewrite.Assoc) = 1;
- return a;
- }
- fn Main() -> i32 {
- var x: X = {};
- return F(x);
- }
- // CHECK:STDOUT: result: 1
|