| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- // 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
- // --- modifiers.carbon
- package Modifiers;
- base class Base {
- virtual fn H();
- impl fn I();
- }
- abstract class Abstract {
- abstract fn J();
- virtual fn K();
- impl fn L();
- }
- // --- todo_fail_later_base.carbon
- package FailLaterBase;
- import Modifiers;
- base class Derived {
- virtual fn F();
- extend base: Modifiers.Base;
- }
- // --- fail_todo_init.carbon
- package Init;
- import Modifiers;
- fn F() {
- // TODO: The vptr shouldn't be counted for programmer-facing behavior.
- // CHECK:STDERR: fail_todo_init.carbon:[[@LINE+3]]:27: error: cannot initialize class with 1 field(s) from struct with 0 field(s).
- // CHECK:STDERR: var v: Modifiers.Base = {};
- // CHECK:STDERR: ^~
- var v: Modifiers.Base = {};
- }
- // CHECK:STDOUT: --- 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 = ptr_type <vtable> [template]
- // CHECK:STDOUT: %.3: type = struct_type {.<vptr>: %.2} [template]
- // CHECK:STDOUT: %.4: <witness> = complete_type_witness %.3 [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: %.loc8: <witness> = complete_type_witness %.3 [template = constants.%.4]
- // 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: %.loc16: <witness> = complete_type_witness %.3 [template = constants.%.4]
- // 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:
- // CHECK:STDOUT: --- todo_fail_later_base.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Derived: type = class_type @Derived [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %Base: type = class_type @Base [template]
- // CHECK:STDOUT: %.2: type = ptr_type <vtable> [template]
- // CHECK:STDOUT: %.3: type = struct_type {.<vptr>: %.2} [template]
- // CHECK:STDOUT: %.4: <witness> = complete_type_witness %.3 [template]
- // CHECK:STDOUT: %.5: type = ptr_type %.3 [template]
- // CHECK:STDOUT: %.6: type = unbound_element_type %Derived, %Base [template]
- // CHECK:STDOUT: %.7: type = struct_type {.<vptr>: %.2, .base: %Base} [template]
- // CHECK:STDOUT: %.8: <witness> = complete_type_witness %.7 [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: %Modifiers: <namespace> = namespace file.%Modifiers.import, [template] {
- // CHECK:STDOUT: .Base = %import_ref.1
- // CHECK:STDOUT: import Modifiers//default
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %import_ref.1: type = import_ref Modifiers//default, inst+3, loaded [template = constants.%Base]
- // CHECK:STDOUT: %import_ref.2 = import_ref Modifiers//default, inst+4, unloaded
- // CHECK:STDOUT: %import_ref.3 = import_ref Modifiers//default, inst+5, unloaded
- // CHECK:STDOUT: %import_ref.4 = import_ref Modifiers//default, inst+9, unloaded
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .Modifiers = imports.%Modifiers
- // CHECK:STDOUT: .Derived = %Derived.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Modifiers.import = import Modifiers
- // CHECK:STDOUT: %Derived.decl: type = class_decl @Derived [template = constants.%Derived] {} {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Derived {
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {} {}
- // CHECK:STDOUT: %Modifiers.ref: <namespace> = name_ref Modifiers, imports.%Modifiers [template = imports.%Modifiers]
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, imports.%import_ref.1 [template = constants.%Base]
- // CHECK:STDOUT: %.loc8: %.6 = base_decl %Base, element0 [template]
- // CHECK:STDOUT: %.loc9: <witness> = complete_type_witness %.7 [template = constants.%.8]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Derived
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: .base = %.loc8
- // CHECK:STDOUT: extend name_scope4
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Base {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%import_ref.2
- // CHECK:STDOUT: .H = imports.%import_ref.3
- // CHECK:STDOUT: .I = imports.%import_ref.4
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: virtual fn @F();
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- fail_todo_init.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %Base: type = class_type @Base [template]
- // CHECK:STDOUT: %.2: type = ptr_type <vtable> [template]
- // CHECK:STDOUT: %.3: type = struct_type {.<vptr>: %.2} [template]
- // CHECK:STDOUT: %.4: <witness> = complete_type_witness %.3 [template]
- // CHECK:STDOUT: %.5: type = ptr_type %.3 [template]
- // CHECK:STDOUT: %.6: type = struct_type {} [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: %Modifiers: <namespace> = namespace file.%Modifiers.import, [template] {
- // CHECK:STDOUT: .Base = %import_ref.1
- // CHECK:STDOUT: import Modifiers//default
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %import_ref.1: type = import_ref Modifiers//default, inst+3, loaded [template = constants.%Base]
- // CHECK:STDOUT: %import_ref.2 = import_ref Modifiers//default, inst+4, unloaded
- // CHECK:STDOUT: %import_ref.3 = import_ref Modifiers//default, inst+5, unloaded
- // CHECK:STDOUT: %import_ref.4 = import_ref Modifiers//default, inst+9, unloaded
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .Modifiers = imports.%Modifiers
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Modifiers.import = import Modifiers
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {} {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Base {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%import_ref.2
- // CHECK:STDOUT: .H = imports.%import_ref.3
- // CHECK:STDOUT: .I = imports.%import_ref.4
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %Modifiers.ref: <namespace> = name_ref Modifiers, imports.%Modifiers [template = imports.%Modifiers]
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, imports.%import_ref.1 [template = constants.%Base]
- // CHECK:STDOUT: %v.var: ref %Base = var v
- // CHECK:STDOUT: %v: ref %Base = bind_name v, %v.var
- // CHECK:STDOUT: %.loc11: %.6 = struct_literal ()
- // CHECK:STDOUT: assign %v.var, <error>
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|