| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- // 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/derived_to_base.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/derived_to_base.carbon
- base class A {
- var a: i32;
- }
- base class B {
- extend base: A;
- var b: i32;
- }
- class C {
- extend base: B;
- var c: i32;
- }
- fn ConvertCToB(p: C*) -> B* { return p; }
- fn ConvertBToA(p: B*) -> A* { return p; }
- fn ConvertCToA(p: C*) -> A* { return p; }
- fn ConvertValue(c: C) {
- let a: A = c;
- }
- fn ConvertRef(c: C*) -> A* {
- return &(*c as A);
- }
- fn ConvertInit() {
- let a: A = {.base = {.base = {.a = 1}, .b = 2}, .c = 3} as C;
- }
- // CHECK:STDOUT: --- derived_to_base.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %A: type = class_type @A [template]
- // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
- // CHECK:STDOUT: %.2: type = unbound_element_type %A, i32 [template]
- // CHECK:STDOUT: %.3: type = struct_type {.a: i32} [template]
- // CHECK:STDOUT: %.4: <witness> = complete_type_witness %.3 [template]
- // CHECK:STDOUT: %B: type = class_type @B [template]
- // CHECK:STDOUT: %.5: type = ptr_type %.3 [template]
- // CHECK:STDOUT: %.6: type = unbound_element_type %B, %A [template]
- // CHECK:STDOUT: %.7: type = unbound_element_type %B, i32 [template]
- // CHECK:STDOUT: %.8: type = struct_type {.base: %A, .b: i32} [template]
- // CHECK:STDOUT: %.9: <witness> = complete_type_witness %.8 [template]
- // CHECK:STDOUT: %C: type = class_type @C [template]
- // CHECK:STDOUT: %.10: type = struct_type {.base: %.5, .b: i32} [template]
- // CHECK:STDOUT: %.11: type = ptr_type %.10 [template]
- // CHECK:STDOUT: %.12: type = ptr_type %.8 [template]
- // CHECK:STDOUT: %.13: type = unbound_element_type %C, %B [template]
- // CHECK:STDOUT: %.14: type = unbound_element_type %C, i32 [template]
- // CHECK:STDOUT: %.15: type = struct_type {.base: %B, .c: i32} [template]
- // CHECK:STDOUT: %.16: <witness> = complete_type_witness %.15 [template]
- // CHECK:STDOUT: %.17: type = ptr_type %C [template]
- // CHECK:STDOUT: %.18: type = ptr_type %B [template]
- // CHECK:STDOUT: %ConvertCToB.type: type = fn_type @ConvertCToB [template]
- // CHECK:STDOUT: %ConvertCToB: %ConvertCToB.type = struct_value () [template]
- // CHECK:STDOUT: %.19: type = struct_type {.base: %.12, .c: i32} [template]
- // CHECK:STDOUT: %.20: type = ptr_type %.19 [template]
- // CHECK:STDOUT: %.21: type = ptr_type %.15 [template]
- // CHECK:STDOUT: %.22: type = ptr_type %A [template]
- // CHECK:STDOUT: %ConvertBToA.type: type = fn_type @ConvertBToA [template]
- // CHECK:STDOUT: %ConvertBToA: %ConvertBToA.type = struct_value () [template]
- // CHECK:STDOUT: %ConvertCToA.type: type = fn_type @ConvertCToA [template]
- // CHECK:STDOUT: %ConvertCToA: %ConvertCToA.type = struct_value () [template]
- // CHECK:STDOUT: %ConvertValue.type: type = fn_type @ConvertValue [template]
- // CHECK:STDOUT: %ConvertValue: %ConvertValue.type = struct_value () [template]
- // CHECK:STDOUT: %ConvertRef.type: type = fn_type @ConvertRef [template]
- // CHECK:STDOUT: %ConvertRef: %ConvertRef.type = struct_value () [template]
- // CHECK:STDOUT: %ConvertInit.type: type = fn_type @ConvertInit [template]
- // CHECK:STDOUT: %ConvertInit: %ConvertInit.type = struct_value () [template]
- // CHECK:STDOUT: %.23: i32 = int_literal 1 [template]
- // CHECK:STDOUT: %.24: i32 = int_literal 2 [template]
- // CHECK:STDOUT: %.25: type = struct_type {.base: %.3, .b: i32} [template]
- // CHECK:STDOUT: %.26: i32 = int_literal 3 [template]
- // CHECK:STDOUT: %.27: type = struct_type {.base: %.25, .c: i32} [template]
- // CHECK:STDOUT: %struct.1: %A = struct_value (%.23) [template]
- // CHECK:STDOUT: %struct.2: %B = struct_value (%struct.1, %.24) [template]
- // CHECK:STDOUT: %struct.3: %C = struct_value (%struct.2, %.26) [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: .Int32 = %import_ref
- // 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: %import_ref: %Int32.type = import_ref Core//prelude/types, inst+9, loaded [template = constants.%Int32]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .A = %A.decl
- // CHECK:STDOUT: .B = %B.decl
- // CHECK:STDOUT: .C = %C.decl
- // CHECK:STDOUT: .ConvertCToB = %ConvertCToB.decl
- // CHECK:STDOUT: .ConvertBToA = %ConvertBToA.decl
- // CHECK:STDOUT: .ConvertCToA = %ConvertCToA.decl
- // CHECK:STDOUT: .ConvertValue = %ConvertValue.decl
- // CHECK:STDOUT: .ConvertRef = %ConvertRef.decl
- // CHECK:STDOUT: .ConvertInit = %ConvertInit.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %A.decl: type = class_decl @A [template = constants.%A] {} {}
- // CHECK:STDOUT: %B.decl: type = class_decl @B [template = constants.%B] {} {}
- // CHECK:STDOUT: %C.decl: type = class_decl @C [template = constants.%C] {} {}
- // CHECK:STDOUT: %ConvertCToB.decl: %ConvertCToB.type = fn_decl @ConvertCToB [template = constants.%ConvertCToB] {
- // CHECK:STDOUT: %p.patt: %.17 = binding_pattern p
- // CHECK:STDOUT: %p.param_patt: %.17 = param_pattern %p.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %.loc25_20: type = ptr_type %C [template = constants.%.17]
- // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [template = constants.%B]
- // CHECK:STDOUT: %.loc25_27: type = ptr_type %B [template = constants.%.18]
- // CHECK:STDOUT: %return: ref %.18 = var <return slot>
- // CHECK:STDOUT: %param: %.17 = param runtime_param0
- // CHECK:STDOUT: %p: %.17 = bind_name p, %param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %ConvertBToA.decl: %ConvertBToA.type = fn_decl @ConvertBToA [template = constants.%ConvertBToA] {
- // CHECK:STDOUT: %p.patt: %.18 = binding_pattern p
- // CHECK:STDOUT: %p.param_patt: %.18 = param_pattern %p.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [template = constants.%B]
- // CHECK:STDOUT: %.loc26_20: type = ptr_type %B [template = constants.%.18]
- // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %.loc26_27: type = ptr_type %A [template = constants.%.22]
- // CHECK:STDOUT: %return: ref %.22 = var <return slot>
- // CHECK:STDOUT: %param: %.18 = param runtime_param0
- // CHECK:STDOUT: %p: %.18 = bind_name p, %param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %ConvertCToA.decl: %ConvertCToA.type = fn_decl @ConvertCToA [template = constants.%ConvertCToA] {
- // CHECK:STDOUT: %p.patt: %.17 = binding_pattern p
- // CHECK:STDOUT: %p.param_patt: %.17 = param_pattern %p.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %.loc27_20: type = ptr_type %C [template = constants.%.17]
- // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %.loc27_27: type = ptr_type %A [template = constants.%.22]
- // CHECK:STDOUT: %return: ref %.22 = var <return slot>
- // CHECK:STDOUT: %param: %.17 = param runtime_param0
- // CHECK:STDOUT: %p: %.17 = bind_name p, %param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %ConvertValue.decl: %ConvertValue.type = fn_decl @ConvertValue [template = constants.%ConvertValue] {
- // CHECK:STDOUT: %c.patt: %C = binding_pattern c
- // CHECK:STDOUT: %c.param_patt: %C = param_pattern %c.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %param: %C = param runtime_param0
- // CHECK:STDOUT: %c: %C = bind_name c, %param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %ConvertRef.decl: %ConvertRef.type = fn_decl @ConvertRef [template = constants.%ConvertRef] {
- // CHECK:STDOUT: %c.patt: %.17 = binding_pattern c
- // CHECK:STDOUT: %c.param_patt: %.17 = param_pattern %c.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %.loc33_19: type = ptr_type %C [template = constants.%.17]
- // CHECK:STDOUT: %A.ref.loc33: type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %.loc33_26: type = ptr_type %A [template = constants.%.22]
- // CHECK:STDOUT: %return: ref %.22 = var <return slot>
- // CHECK:STDOUT: %param: %.17 = param runtime_param0
- // CHECK:STDOUT: %c: %.17 = bind_name c, %param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %ConvertInit.decl: %ConvertInit.type = fn_decl @ConvertInit [template = constants.%ConvertInit] {} {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @A {
- // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc12_10.1: type = value_of_initializer %int.make_type_32 [template = i32]
- // CHECK:STDOUT: %.loc12_10.2: type = converted %int.make_type_32, %.loc12_10.1 [template = i32]
- // CHECK:STDOUT: %.loc12_8: %.2 = field_decl a, element0 [template]
- // CHECK:STDOUT: %.loc13: <witness> = complete_type_witness %.3 [template = constants.%.4]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%A
- // CHECK:STDOUT: .a = %.loc12_8
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @B {
- // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %.loc16: %.6 = base_decl %A, element0 [template]
- // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc17_10.1: type = value_of_initializer %int.make_type_32 [template = i32]
- // CHECK:STDOUT: %.loc17_10.2: type = converted %int.make_type_32, %.loc17_10.1 [template = i32]
- // CHECK:STDOUT: %.loc17_8: %.7 = field_decl b, element1 [template]
- // CHECK:STDOUT: %.loc18: <witness> = complete_type_witness %.8 [template = constants.%.9]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%B
- // CHECK:STDOUT: .base = %.loc16
- // CHECK:STDOUT: .b = %.loc17_8
- // CHECK:STDOUT: extend name_scope2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @C {
- // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [template = constants.%B]
- // CHECK:STDOUT: %.loc21: %.13 = base_decl %B, element0 [template]
- // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc22_10.1: type = value_of_initializer %int.make_type_32 [template = i32]
- // CHECK:STDOUT: %.loc22_10.2: type = converted %int.make_type_32, %.loc22_10.1 [template = i32]
- // CHECK:STDOUT: %.loc22_8: %.14 = field_decl c, element1 [template]
- // CHECK:STDOUT: %.loc23: <witness> = complete_type_witness %.15 [template = constants.%.16]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%C
- // CHECK:STDOUT: .base = %.loc21
- // CHECK:STDOUT: .c = %.loc22_8
- // CHECK:STDOUT: extend name_scope3
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @ConvertCToB(%p.param_patt: %.17) -> %.18 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %p.ref: %.17 = name_ref p, %p
- // CHECK:STDOUT: %.loc25_39.1: ref %C = deref %p.ref
- // CHECK:STDOUT: %.loc25_39.2: ref %B = class_element_access %.loc25_39.1, element0
- // CHECK:STDOUT: %.loc25_39.3: %.18 = addr_of %.loc25_39.2
- // CHECK:STDOUT: %.loc25_39.4: %.18 = converted %p.ref, %.loc25_39.3
- // CHECK:STDOUT: return %.loc25_39.4
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @ConvertBToA(%p.param_patt: %.18) -> %.22 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %p.ref: %.18 = name_ref p, %p
- // CHECK:STDOUT: %.loc26_39.1: ref %B = deref %p.ref
- // CHECK:STDOUT: %.loc26_39.2: ref %A = class_element_access %.loc26_39.1, element0
- // CHECK:STDOUT: %.loc26_39.3: %.22 = addr_of %.loc26_39.2
- // CHECK:STDOUT: %.loc26_39.4: %.22 = converted %p.ref, %.loc26_39.3
- // CHECK:STDOUT: return %.loc26_39.4
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @ConvertCToA(%p.param_patt: %.17) -> %.22 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %p.ref: %.17 = name_ref p, %p
- // CHECK:STDOUT: %.loc27_39.1: ref %C = deref %p.ref
- // CHECK:STDOUT: %.loc27_39.2: ref %B = class_element_access %.loc27_39.1, element0
- // CHECK:STDOUT: %.loc27_39.3: ref %A = class_element_access %.loc27_39.2, element0
- // CHECK:STDOUT: %.loc27_39.4: %.22 = addr_of %.loc27_39.3
- // CHECK:STDOUT: %.loc27_39.5: %.22 = converted %p.ref, %.loc27_39.4
- // CHECK:STDOUT: return %.loc27_39.5
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @ConvertValue(%c.param_patt: %C) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %c.ref: %C = name_ref c, %c
- // CHECK:STDOUT: %.loc30_15.1: ref %B = class_element_access %c.ref, element0
- // CHECK:STDOUT: %.loc30_15.2: ref %A = class_element_access %.loc30_15.1, element0
- // CHECK:STDOUT: %.loc30_15.3: ref %A = converted %c.ref, %.loc30_15.2
- // CHECK:STDOUT: %.loc30_15.4: %A = bind_value %.loc30_15.3
- // CHECK:STDOUT: %a: %A = bind_name a, %.loc30_15.4
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @ConvertRef(%c.param_patt: %.17) -> %.22 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %c.ref: %.17 = name_ref c, %c
- // CHECK:STDOUT: %.loc34_12: ref %C = deref %c.ref
- // CHECK:STDOUT: %A.ref.loc34: type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %.loc34_15.1: ref %B = class_element_access %.loc34_12, element0
- // CHECK:STDOUT: %.loc34_15.2: ref %A = class_element_access %.loc34_15.1, element0
- // CHECK:STDOUT: %.loc34_15.3: ref %A = converted %.loc34_12, %.loc34_15.2
- // CHECK:STDOUT: %.loc34_10: %.22 = addr_of %.loc34_15.3
- // CHECK:STDOUT: return %.loc34_10
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @ConvertInit() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %.loc38_38: i32 = int_literal 1 [template = constants.%.23]
- // CHECK:STDOUT: %.loc38_39.1: %.3 = struct_literal (%.loc38_38)
- // CHECK:STDOUT: %.loc38_47: i32 = int_literal 2 [template = constants.%.24]
- // CHECK:STDOUT: %.loc38_48.1: %.25 = struct_literal (%.loc38_39.1, %.loc38_47)
- // CHECK:STDOUT: %.loc38_56: i32 = int_literal 3 [template = constants.%.26]
- // CHECK:STDOUT: %.loc38_57.1: %.27 = struct_literal (%.loc38_48.1, %.loc38_56)
- // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %.loc38_57.2: ref %C = temporary_storage
- // CHECK:STDOUT: %.loc38_57.3: ref %B = class_element_access %.loc38_57.2, element0
- // CHECK:STDOUT: %.loc38_48.2: ref %A = class_element_access %.loc38_57.3, element0
- // CHECK:STDOUT: %.loc38_39.2: ref i32 = class_element_access %.loc38_48.2, element0
- // CHECK:STDOUT: %.loc38_39.3: init i32 = initialize_from %.loc38_38 to %.loc38_39.2 [template = constants.%.23]
- // CHECK:STDOUT: %.loc38_39.4: init %A = class_init (%.loc38_39.3), %.loc38_48.2 [template = constants.%struct.1]
- // CHECK:STDOUT: %.loc38_48.3: init %A = converted %.loc38_39.1, %.loc38_39.4 [template = constants.%struct.1]
- // CHECK:STDOUT: %.loc38_48.4: ref i32 = class_element_access %.loc38_57.3, element1
- // CHECK:STDOUT: %.loc38_48.5: init i32 = initialize_from %.loc38_47 to %.loc38_48.4 [template = constants.%.24]
- // CHECK:STDOUT: %.loc38_48.6: init %B = class_init (%.loc38_48.3, %.loc38_48.5), %.loc38_57.3 [template = constants.%struct.2]
- // CHECK:STDOUT: %.loc38_57.4: init %B = converted %.loc38_48.1, %.loc38_48.6 [template = constants.%struct.2]
- // CHECK:STDOUT: %.loc38_57.5: ref i32 = class_element_access %.loc38_57.2, element1
- // CHECK:STDOUT: %.loc38_57.6: init i32 = initialize_from %.loc38_56 to %.loc38_57.5 [template = constants.%.26]
- // CHECK:STDOUT: %.loc38_57.7: init %C = class_init (%.loc38_57.4, %.loc38_57.6), %.loc38_57.2 [template = constants.%struct.3]
- // CHECK:STDOUT: %.loc38_57.8: ref %C = temporary %.loc38_57.2, %.loc38_57.7
- // CHECK:STDOUT: %.loc38_59: ref %C = converted %.loc38_57.1, %.loc38_57.8
- // CHECK:STDOUT: %.loc38_63.1: ref %B = class_element_access %.loc38_59, element0
- // CHECK:STDOUT: %.loc38_63.2: ref %A = class_element_access %.loc38_63.1, element0
- // CHECK:STDOUT: %.loc38_63.3: ref %A = converted %.loc38_59, %.loc38_63.2
- // CHECK:STDOUT: %.loc38_63.4: %A = bind_value %.loc38_63.3
- // CHECK:STDOUT: %a: %A = bind_name a, %.loc38_63.4
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|