| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // 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/check/testdata/class/virtual_modifiers.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/virtual_modifiers.carbon
- base class Base {
- virtual fn H();
- impl fn I();
- }
- abstract class Abstract {
- abstract fn J();
- virtual fn K();
- impl fn L();
- }
- // CHECK:STDOUT: --- virtual_modifiers.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Base: type = class_type @Base [template]
- // CHECK:STDOUT: %H.type: type = fn_type @H [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %H: %H.type = struct_value () [template]
- // CHECK:STDOUT: %I.type: type = fn_type @I [template]
- // CHECK:STDOUT: %I: %I.type = struct_value () [template]
- // CHECK:STDOUT: %.2: type = struct_type {} [template]
- // CHECK:STDOUT: %.3: <witness> = complete_type_witness %.2 [template]
- // CHECK:STDOUT: %Abstract: type = class_type @Abstract [template]
- // CHECK:STDOUT: %J.type: type = fn_type @J [template]
- // CHECK:STDOUT: %J: %J.type = struct_value () [template]
- // CHECK:STDOUT: %K.type: type = fn_type @K [template]
- // CHECK:STDOUT: %K: %K.type = struct_value () [template]
- // CHECK:STDOUT: %L.type: type = fn_type @L [template]
- // CHECK:STDOUT: %L: %L.type = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/operators
- // CHECK:STDOUT: import Core//prelude/types
- // CHECK:STDOUT: import Core//prelude/operators/arithmetic
- // CHECK:STDOUT: import Core//prelude/operators/as
- // CHECK:STDOUT: import Core//prelude/operators/bitwise
- // CHECK:STDOUT: import Core//prelude/operators/comparison
- // CHECK:STDOUT: import Core//prelude/types/bool
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .Base = %Base.decl
- // CHECK:STDOUT: .Abstract = %Abstract.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Base.decl: type = class_decl @Base [template = constants.%Base] {}
- // CHECK:STDOUT: %Abstract.decl: type = class_decl @Abstract [template = constants.%Abstract] {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Base {
- // CHECK:STDOUT: %H.decl: %H.type = fn_decl @H [template = constants.%H] {}
- // CHECK:STDOUT: %I.decl: %I.type = fn_decl @I [template = constants.%I] {}
- // CHECK:STDOUT: %.loc16: <witness> = complete_type_witness %.2 [template = constants.%.3]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Base
- // CHECK:STDOUT: .H = %H.decl
- // CHECK:STDOUT: .I = %I.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Abstract {
- // CHECK:STDOUT: %J.decl: %J.type = fn_decl @J [template = constants.%J] {}
- // CHECK:STDOUT: %K.decl: %K.type = fn_decl @K [template = constants.%K] {}
- // CHECK:STDOUT: %L.decl: %L.type = fn_decl @L [template = constants.%L] {}
- // CHECK:STDOUT: %.loc24: <witness> = complete_type_witness %.2 [template = constants.%.3]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Abstract
- // CHECK:STDOUT: .J = %J.decl
- // CHECK:STDOUT: .K = %K.decl
- // CHECK:STDOUT: .L = %L.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: virtual fn @H();
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl fn @I();
- // CHECK:STDOUT:
- // CHECK:STDOUT: abstract fn @J();
- // CHECK:STDOUT:
- // CHECK:STDOUT: virtual fn @K();
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl fn @L();
- // CHECK:STDOUT:
|