| 123456789101112131415161718192021222324252627 |
- // 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
- // RUN: %{not} %{explorer-run}
- // RUN: %{not} %{explorer-run-trace}
- package ExplorerTest api;
- class A {
- var a: i32;
- }
- class B {
- var b: i32;
- }
- external impl A as As(B) {
- fn Convert[self: Self]() -> B { return {.b = self.a}; }
- }
- fn Main() -> i32 {
- var a: (i32, A) = (1, {.a = 2});
- // CHECK:STDERR: COMPILATION ERROR: {{.*}}/explorer/testdata/tuple/fail_implicit_convert_with_as.carbon:[[@LINE+1]]: type error in name binding: '(i32, class A)' is not implicitly convertible to '(i32, class B)'
- var b: (i32, B) = a;
- return 0;
- }
|