Files
carbon-lang/explorer/testdata/class/virtual_method_self.carbon
T
Adrien Leravat 798a40c886 Basic support for impl virtual override keyword (#2493)
Features:
* Add basic support for `impl` virtual methods (override virtual method)
* Error on invalid declaration for `impl` and `virtual`, covering simple use cases
* Add `abstract` fn parser-only support

Changes:
* Modify parser to handle new function specifiers, resolve conflicts
    * Group `virtual_override` and `FN`, and group `impl_kind` and `IMPL` to avoid ambiguities with around `impl` token parsing
* Add new `VirtualOverride` enum for function declarations, and matching `virt_override() -> VirtualOverride` getter
* Update function declaration logic

Depends on #2462
2023-01-04 11:09:23 -08:00

52 lines
1.2 KiB
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: c.Foo(): 1
// CHECK:STDOUT: d.Foo(): 2
// CHECK:STDOUT: e.Foo(): 3
// CHECK:STDOUT: (*dp).Foo(): 3
// CHECK:STDOUT: (*dc).Foo(): 3
// CHECK:STDOUT: result: 0
package ExplorerTest api;
base class C {
var value_c: i32;
virtual fn Foo[self: Self]() -> i32 {
return self.value_c;
}
}
base class D extends C {
var value_d: i32;
impl fn Foo[self: Self]() -> i32 {
return self.value_d;
}
}
class E extends D {
var value_e: i32;
impl fn Foo[self: Self]() -> i32 {
return self.value_e;
}
}
fn Main() -> i32 {
var c: C = {.value_c = 1};
Print("c.Foo(): {0}", c.Foo());
var d: D = {.value_d = 2, .base = {.value_c = 1}};
Print("d.Foo(): {0}", d.Foo());
var e: E = {.value_e = 3, .base={.value_d = 2, .base = {.value_c = 1}}};
Print("e.Foo(): {0}", e.Foo());
var dp: D* = &e;
Print("(*dp).Foo(): {0}", (*dp).Foo());
var dc: C* = &e;
Print("(*dc).Foo(): {0}", (*dc).Foo());
return 0;
}