| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- // 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
- class Class {
- // CHECK:STDERR: fail_self.carbon:[[@LINE+4]]:8: ERROR: `self` can only be declared in an implicit parameter list.
- // CHECK:STDERR: fn F(self: Self);
- // CHECK:STDERR: ^~~~~~~~~~
- // CHECK:STDERR:
- fn F(self: Self);
- fn G() -> Self;
- }
- // CHECK:STDERR: fail_self.carbon:[[@LINE+4]]:12: ERROR: `self` can only be declared in an implicit parameter list.
- // CHECK:STDERR: fn Class.F(self: Self) {
- // CHECK:STDERR: ^~~~~~~~~~
- // CHECK:STDERR:
- fn Class.F(self: Self) {
- }
- fn Class.G() -> Self {
- // CHECK:STDERR: fail_self.carbon:[[@LINE+4]]:7: ERROR: `self` can only be declared in an implicit parameter list.
- // CHECK:STDERR: var self: Self;
- // CHECK:STDERR: ^~~~~~~~~~
- // CHECK:STDERR:
- var self: Self;
- // CHECK:STDERR: fail_self.carbon:[[@LINE+4]]:10: ERROR: Cannot copy value of type `Class`.
- // CHECK:STDERR: return self;
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR:
- return self;
- }
- class WrongSelf {
- fn F[self: Class]();
- }
- fn CallWrongSelf(ws: WrongSelf) {
- // CHECK:STDERR: fail_self.carbon:[[@LINE+6]]:3: ERROR: Cannot implicitly convert from `WrongSelf` to `Class`.
- // CHECK:STDERR: ws.F();
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR: fail_self.carbon:[[@LINE-7]]:8: Initializing `self` parameter of method declared here.
- // CHECK:STDERR: fn F[self: Class]();
- // CHECK:STDERR: ^~~~
- ws.F();
- }
- // CHECK:STDOUT: --- fail_self.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Class: type = class_type @Class [template]
- // CHECK:STDOUT: %F.1: type = fn_type @F.1 [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %struct.1: F = struct_value () [template]
- // CHECK:STDOUT: %G: type = fn_type @G [template]
- // CHECK:STDOUT: %struct.2: G = struct_value () [template]
- // CHECK:STDOUT: %.2: type = struct_type {} [template]
- // CHECK:STDOUT: %.3: type = ptr_type {} [template]
- // CHECK:STDOUT: %WrongSelf: type = class_type @WrongSelf [template]
- // CHECK:STDOUT: %F.2: type = fn_type @F.2 [template]
- // CHECK:STDOUT: %struct.3: F = struct_value () [template]
- // CHECK:STDOUT: %CallWrongSelf: type = fn_type @CallWrongSelf [template]
- // CHECK:STDOUT: %struct.4: CallWrongSelf = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = %Core
- // CHECK:STDOUT: .Class = %Class.decl
- // CHECK:STDOUT: .WrongSelf = %WrongSelf.decl
- // CHECK:STDOUT: .CallWrongSelf = %CallWrongSelf.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
- // CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {}
- // CHECK:STDOUT: %F.decl: F = fn_decl @F.1 [template = constants.%struct.1] {
- // CHECK:STDOUT: %Self.ref.loc21: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %self.loc21_12.1: Class = param self
- // CHECK:STDOUT: @F.1.%self: Class = bind_name self, %self.loc21_12.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %G.decl: G = fn_decl @G [template = constants.%struct.2] {
- // CHECK:STDOUT: %Self.ref.loc24: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: @G.%return: ref Class = var <return slot>
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %WrongSelf.decl: type = class_decl @WrongSelf [template = constants.%WrongSelf] {}
- // CHECK:STDOUT: %CallWrongSelf.decl: CallWrongSelf = fn_decl @CallWrongSelf [template = constants.%struct.4] {
- // CHECK:STDOUT: %WrongSelf.ref: type = name_ref WrongSelf, %WrongSelf.decl [template = constants.%WrongSelf]
- // CHECK:STDOUT: %ws.loc41_18.1: WrongSelf = param ws
- // CHECK:STDOUT: @CallWrongSelf.%ws: WrongSelf = bind_name ws, %ws.loc41_18.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Class {
- // CHECK:STDOUT: %F.decl: F = fn_decl @F.1 [template = constants.%struct.1] {
- // CHECK:STDOUT: %Self.ref.loc12: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %self.loc12_8.1: Class = param self
- // CHECK:STDOUT: %self.loc12_8.2: Class = bind_name self, %self.loc12_8.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %G.decl: G = fn_decl @G [template = constants.%struct.2] {
- // CHECK:STDOUT: %Self.ref.loc14: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %return.var: ref Class = var <return slot>
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Class
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: .G = %G.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @WrongSelf {
- // CHECK:STDOUT: %F.decl: F = fn_decl @F.2 [template = constants.%struct.3] {
- // CHECK:STDOUT: %Class.ref: type = name_ref Class, file.%Class.decl [template = constants.%Class]
- // CHECK:STDOUT: %self.loc38_8.1: Class = param self
- // CHECK:STDOUT: %self.loc38_8.2: Class = bind_name self, %self.loc38_8.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%WrongSelf
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F.1(%self: Class) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @G() -> %return: Class {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %self.var: ref Class = var self
- // CHECK:STDOUT: %self: ref Class = bind_name self, %self.var
- // CHECK:STDOUT: %self.ref: ref Class = name_ref self, %self
- // CHECK:STDOUT: %.loc34: Class = bind_value %self.ref
- // CHECK:STDOUT: return <error> to %return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F.2[@WrongSelf.%self.loc38_8.2: Class]();
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @CallWrongSelf(%ws: WrongSelf) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %ws.ref: WrongSelf = name_ref ws, %ws
- // CHECK:STDOUT: %F.ref: F = name_ref F, @WrongSelf.%F.decl [template = constants.%struct.3]
- // CHECK:STDOUT: %.loc48: <bound method> = bound_method %ws.ref, %F.ref
- // CHECK:STDOUT: %F.call: init () = call %.loc48(<invalid>) [template = <error>]
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|