mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Part of switching to the [abbreviations we've decided to use](https://docs.google.com/document/d/1RRYMm42osyqhI2LyjrjockYCutQ5dOf8Abu50kTrkX0/edit?resourcekey=0-kHyqOESbOHmzZphUbtLrTw#heading=h.pph7i5m5un7q). I will rename files in a follow-up PR.
78 lines
3.2 KiB
Plaintext
78 lines
3.2 KiB
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
|
|
|
|
class Class {
|
|
fn NoSelf();
|
|
fn WithSelf[self: Class]();
|
|
}
|
|
|
|
fn F(c: Class) {
|
|
c.NoSelf();
|
|
c.WithSelf();
|
|
|
|
Class.NoSelf();
|
|
// CHECK:STDERR: fail_method.carbon:[[@LINE+6]]:17: ERROR: Missing object argument in method call.
|
|
// CHECK:STDERR: Class.WithSelf();
|
|
// CHECK:STDERR: ^
|
|
// CHECK:STDERR: fail_method.carbon:[[@LINE-11]]:3: Calling function declared here.
|
|
// CHECK:STDERR: fn WithSelf[self: Class]();
|
|
// CHECK:STDERR: ^
|
|
Class.WithSelf();
|
|
// CHECK:STDERR: fail_method.carbon:[[@LINE+6]]:17: ERROR: 1 argument(s) passed to function expecting 0 argument(s).
|
|
// CHECK:STDERR: Class.WithSelf(c);
|
|
// CHECK:STDERR: ^
|
|
// CHECK:STDERR: fail_method.carbon:[[@LINE-18]]:3: Calling function declared here.
|
|
// CHECK:STDERR: fn WithSelf[self: Class]();
|
|
// CHECK:STDERR: ^
|
|
Class.WithSelf(c);
|
|
}
|
|
|
|
// CHECK:STDOUT: constants {
|
|
// CHECK:STDOUT: %.loc10_1.1: type = struct_type {}
|
|
// CHECK:STDOUT: %.loc10_1.2: type = tuple_type ()
|
|
// CHECK:STDOUT: %.loc7: type = ptr_type {}
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: file "fail_method.carbon" {
|
|
// CHECK:STDOUT: class_decl @Class, ()
|
|
// CHECK:STDOUT: %Class: type = class_type @Class
|
|
// CHECK:STDOUT: %F: <function> = fn_decl @F
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: class @Class {
|
|
// CHECK:STDOUT: %NoSelf: <function> = fn_decl @NoSelf
|
|
// CHECK:STDOUT: %WithSelf: <function> = fn_decl @WithSelf
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: !members:
|
|
// CHECK:STDOUT: .NoSelf = %NoSelf
|
|
// CHECK:STDOUT: .WithSelf = %WithSelf
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @NoSelf();
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @WithSelf[%self: Class]();
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @F(%c: Class) {
|
|
// CHECK:STDOUT: !entry:
|
|
// CHECK:STDOUT: %c.ref.loc13: Class = name_reference c, %c
|
|
// CHECK:STDOUT: %NoSelf.ref.loc13: <function> = name_reference NoSelf, @Class.%NoSelf
|
|
// CHECK:STDOUT: %.loc13: init () = call %NoSelf.ref.loc13()
|
|
// CHECK:STDOUT: %c.ref.loc14: Class = name_reference c, %c
|
|
// CHECK:STDOUT: %.loc14_4: <bound method> = bound_method %c.ref.loc14, @Class.%WithSelf
|
|
// CHECK:STDOUT: %.loc14_13: init () = call %.loc14_4(%c.ref.loc14)
|
|
// CHECK:STDOUT: %Class.ref.loc16: type = name_reference Class, file.%Class
|
|
// CHECK:STDOUT: %NoSelf.ref.loc16: <function> = name_reference NoSelf, @Class.%NoSelf
|
|
// CHECK:STDOUT: %.loc16: init () = call %NoSelf.ref.loc16()
|
|
// CHECK:STDOUT: %Class.ref.loc23: type = name_reference Class, file.%Class
|
|
// CHECK:STDOUT: %WithSelf.ref.loc23: <function> = name_reference WithSelf, @Class.%WithSelf
|
|
// CHECK:STDOUT: %.loc23: init () = call %WithSelf.ref.loc23(<invalid>)
|
|
// CHECK:STDOUT: %Class.ref.loc30: type = name_reference Class, file.%Class
|
|
// CHECK:STDOUT: %WithSelf.ref.loc30: <function> = name_reference WithSelf, @Class.%WithSelf
|
|
// CHECK:STDOUT: %c.ref.loc30: Class = name_reference c, %c
|
|
// CHECK:STDOUT: %.loc30: init () = call %WithSelf.ref.loc30(<invalid>)
|
|
// CHECK:STDOUT: return
|
|
// CHECK:STDOUT: }
|