mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-27 08:40:11 +01:00
25 lines
552 B
Plaintext
25 lines
552 B
Plaintext
// 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: %{explorer-run}
|
|
// RUN: %{explorer-run-trace}
|
|
// CHECK:STDOUT: result: 3
|
|
|
|
package ExplorerTest api;
|
|
|
|
class A {
|
|
impl as ImplicitAs(i32) {
|
|
fn Convert[self: Self]() -> i32 { return self.n; }
|
|
}
|
|
var n: i32;
|
|
}
|
|
|
|
fn Main() -> i32 {
|
|
let a: A = {.n = 1};
|
|
let b: A = {.n = 2};
|
|
let (x: i32, var y: i32) = (a, b);
|
|
return x + y;
|
|
}
|