| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // 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
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/impl/instance_method.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/impl/instance_method.carbon
- class A;
- interface GetSelf {
- fn Get[addr self: Self*]() -> Self*;
- }
- class A {
- extend impl as GetSelf {
- fn Get[addr self: Self*]() -> Self* {
- return self;
- }
- }
- }
- fn Call(a: A*) -> A* {
- return (*a).Get();
- }
- // CHECK:STDOUT: ; ModuleID = 'instance_method.carbon'
- // CHECK:STDOUT: source_filename = "instance_method.carbon"
- // CHECK:STDOUT:
- // CHECK:STDOUT: define ptr @Get(ptr %self) {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: ret ptr %self
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: define ptr @Call(ptr %a) {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: %Get.call = call ptr @Get(ptr %a)
- // CHECK:STDOUT: ret ptr %Get.call
- // CHECK:STDOUT: }
|