Files
carbon-lang/explorer/testdata/class/abstract_class.carbon
T
Adrien Leravat 1d0bb85d0c Explorer: basic abstract class support (#2441)
Relates to #1881 

Features:
* Add basic support for `abstract` class
    * Allow extending an abstract class
    * Prevent direct instantiation of an abstract class
Changes:
* Check that class extensibility for `VariableDefinition` is not `Abstract`
* Add corresponding set of lit tests
2022-12-06 09:35:55 -08:00

28 lines
563 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: d.a=1
// CHECK:STDOUT: d.b=2
// CHECK:STDOUT: result: 0
package ExplorerTest api;
abstract class C {
var a: i32;
}
class D extends C {
var b: i32;
}
fn Main() -> i32 {
var d: D = { .base = {.a = 1}, .b = 2 };
Print("d.a={0}", d.a);
Print("d.b={0}", d.b);
return 0;
}