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