mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-26 22:02:30 +01:00
31 lines
700 B
Plaintext
31 lines
700 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: 5
|
|
|
|
package ExplorerTest api;
|
|
|
|
interface ConvertsFromInt {
|
|
impl i32 as ImplicitAs(Self);
|
|
}
|
|
|
|
fn ConvertIntTo(T:! ConvertsFromInt, n: i32) -> T {
|
|
return n;
|
|
}
|
|
|
|
class IntHolder {
|
|
var n: i32;
|
|
}
|
|
external impl i32 as ImplicitAs(IntHolder) {
|
|
fn Convert[self: Self]() -> IntHolder { return {.n = self}; }
|
|
}
|
|
external impl IntHolder as ConvertsFromInt {}
|
|
|
|
fn Main() -> i32 {
|
|
return ConvertIntTo(IntHolder, 5).n;
|
|
}
|