| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 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
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/int.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/class/inheritance/fail_derived_to_base.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/inheritance/fail_derived_to_base.carbon
- base class A1 {
- var a: i32;
- }
- base class A2 {
- var a: i32;
- }
- class B2 {
- extend base: A2;
- var b: i32;
- }
- // CHECK:STDERR: fail_derived_to_base.carbon:[[@LINE+7]]:38: error: cannot implicitly convert expression of type `B2*` to `A1*` [ConversionFailure]
- // CHECK:STDERR: fn ConvertUnrelated(p: B2*) -> A1* { return p; }
- // CHECK:STDERR: ^~~~~~~~~
- // CHECK:STDERR: fail_derived_to_base.carbon:[[@LINE+4]]:38: note: type `B2*` does not implement interface `Core.ImplicitAs(A1*)` [MissingImplInMemberAccessInContext]
- // CHECK:STDERR: fn ConvertUnrelated(p: B2*) -> A1* { return p; }
- // CHECK:STDERR: ^~~~~~~~~
- // CHECK:STDERR:
- fn ConvertUnrelated(p: B2*) -> A1* { return p; }
- class Incomplete;
- // CHECK:STDERR: fail_derived_to_base.carbon:[[@LINE+7]]:47: error: cannot implicitly convert expression of type `Incomplete*` to `A2*` [ConversionFailure]
- // CHECK:STDERR: fn ConvertIncomplete(p: Incomplete*) -> A2* { return p; }
- // CHECK:STDERR: ^~~~~~~~~
- // CHECK:STDERR: fail_derived_to_base.carbon:[[@LINE+4]]:47: note: type `Incomplete*` does not implement interface `Core.ImplicitAs(A2*)` [MissingImplInMemberAccessInContext]
- // CHECK:STDERR: fn ConvertIncomplete(p: Incomplete*) -> A2* { return p; }
- // CHECK:STDERR: ^~~~~~~~~
- // CHECK:STDERR:
- fn ConvertIncomplete(p: Incomplete*) -> A2* { return p; }
|