Files
carbon-lang/explorer/testdata/class/virtual_method_shadowed_attr.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

39 lines
858 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: c.Foo(): 1
// CHECK:STDOUT: d.Foo(): 2
// CHECK:STDOUT: (*cp).Foo(): 2
// CHECK:STDOUT: result: 0
package ExplorerTest api;
base class C {
var value: i32;
virtual fn Foo[self: Self]() -> i32 {
return self.value;
}
}
base class D extends C {
var value: i32;
impl fn Foo[self: Self]() -> i32 {
return self.value;
}
}
fn Main() -> i32 {
var c: C = {.value = 1};
Print("c.Foo(): {0}", c.Foo());
var d: D = {.value = 2, .base = {.value = 1}};
Print("d.Foo(): {0}", d.Foo());
var cp: C* = &d;
Print("(*cp).Foo(): {0}", (*cp).Foo());
return 0;
}