| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- // 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/function/call/fail_param_count.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/function/call/fail_param_count.carbon
- fn Run0() {}
- fn Run1(a: i32) {}
- fn Run2(a: i32, b: i32) {}
- fn Main() {
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE+7]]:3: error: 1 argument(s) passed to function expecting 0 argument(s).
- // CHECK:STDERR: Run0(1);
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE-8]]:1: note: calling function declared here
- // CHECK:STDERR: fn Run0() {}
- // CHECK:STDERR: ^~~~~~~~~~~
- // CHECK:STDERR:
- Run0(1);
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE+7]]:3: error: 2 argument(s) passed to function expecting 0 argument(s).
- // CHECK:STDERR: Run0(0, 1);
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE-16]]:1: note: calling function declared here
- // CHECK:STDERR: fn Run0() {}
- // CHECK:STDERR: ^~~~~~~~~~~
- // CHECK:STDERR:
- Run0(0, 1);
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE+7]]:3: error: 0 argument(s) passed to function expecting 1 argument(s).
- // CHECK:STDERR: Run1();
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE-24]]:1: note: calling function declared here
- // CHECK:STDERR: fn Run1(a: i32) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- Run1();
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE+7]]:3: error: 2 argument(s) passed to function expecting 1 argument(s).
- // CHECK:STDERR: Run1(0, 1);
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE-32]]:1: note: calling function declared here
- // CHECK:STDERR: fn Run1(a: i32) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- Run1(0, 1);
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE+7]]:3: error: 0 argument(s) passed to function expecting 2 argument(s).
- // CHECK:STDERR: Run2();
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE-40]]:1: note: calling function declared here
- // CHECK:STDERR: fn Run2(a: i32, b: i32) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- Run2();
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE+6]]:3: error: 1 argument(s) passed to function expecting 2 argument(s).
- // CHECK:STDERR: Run2(0);
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR: fail_param_count.carbon:[[@LINE-48]]:1: note: calling function declared here
- // CHECK:STDERR: fn Run2(a: i32, b: i32) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~
- Run2(0);
- }
- // CHECK:STDOUT: --- fail_param_count.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Run0.type: type = fn_type @Run0 [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %Run0: %Run0.type = struct_value () [template]
- // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
- // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
- // CHECK:STDOUT: %Run1.type: type = fn_type @Run1 [template]
- // CHECK:STDOUT: %Run1: %Run1.type = struct_value () [template]
- // CHECK:STDOUT: %Run2.type: type = fn_type @Run2 [template]
- // CHECK:STDOUT: %Run2: %Run2.type = struct_value () [template]
- // CHECK:STDOUT: %Main.type: type = fn_type @Main [template]
- // CHECK:STDOUT: %Main: %Main.type = struct_value () [template]
- // CHECK:STDOUT: %.2: i32 = int_literal 1 [template]
- // CHECK:STDOUT: %.3: i32 = int_literal 0 [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+4, loaded [template = constants.%Int32]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .Run0 = %Run0.decl
- // CHECK:STDOUT: .Run1 = %Run1.decl
- // CHECK:STDOUT: .Run2 = %Run2.decl
- // CHECK:STDOUT: .Main = %Main.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Run0.decl: %Run0.type = fn_decl @Run0 [template = constants.%Run0] {} {}
- // CHECK:STDOUT: %Run1.decl: %Run1.type = fn_decl @Run1 [template = constants.%Run1] {
- // CHECK:STDOUT: %a.patt: i32 = binding_pattern a
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc12_12.1: type = value_of_initializer %int.make_type_32 [template = i32]
- // CHECK:STDOUT: %.loc12_12.2: type = converted %int.make_type_32, %.loc12_12.1 [template = i32]
- // CHECK:STDOUT: %a.param: i32 = param a, runtime_param0
- // CHECK:STDOUT: %a: i32 = bind_name a, %a.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Run2.decl: %Run2.type = fn_decl @Run2 [template = constants.%Run2] {
- // CHECK:STDOUT: %a.patt: i32 = binding_pattern a
- // CHECK:STDOUT: %b.patt: i32 = binding_pattern b
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int.make_type_32.loc13_12: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc13_12.1: type = value_of_initializer %int.make_type_32.loc13_12 [template = i32]
- // CHECK:STDOUT: %.loc13_12.2: type = converted %int.make_type_32.loc13_12, %.loc13_12.1 [template = i32]
- // CHECK:STDOUT: %a.param: i32 = param a, runtime_param0
- // CHECK:STDOUT: %a: i32 = bind_name a, %a.param
- // CHECK:STDOUT: %int.make_type_32.loc13_20: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc13_20.1: type = value_of_initializer %int.make_type_32.loc13_20 [template = i32]
- // CHECK:STDOUT: %.loc13_20.2: type = converted %int.make_type_32.loc13_20, %.loc13_20.1 [template = i32]
- // CHECK:STDOUT: %b.param: i32 = param b, runtime_param1
- // CHECK:STDOUT: %b: i32 = bind_name b, %b.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Main.decl: %Main.type = fn_decl @Main [template = constants.%Main] {} {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Run0() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Run1(%a: i32) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Run2(%a: i32, %b: i32) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Main() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %Run0.ref.loc23: %Run0.type = name_ref Run0, file.%Run0.decl [template = constants.%Run0]
- // CHECK:STDOUT: %.loc23: i32 = int_literal 1 [template = constants.%.2]
- // CHECK:STDOUT: %Run0.ref.loc31: %Run0.type = name_ref Run0, file.%Run0.decl [template = constants.%Run0]
- // CHECK:STDOUT: %.loc31_8: i32 = int_literal 0 [template = constants.%.3]
- // CHECK:STDOUT: %.loc31_11: i32 = int_literal 1 [template = constants.%.2]
- // CHECK:STDOUT: %Run1.ref.loc40: %Run1.type = name_ref Run1, file.%Run1.decl [template = constants.%Run1]
- // CHECK:STDOUT: %Run1.ref.loc48: %Run1.type = name_ref Run1, file.%Run1.decl [template = constants.%Run1]
- // CHECK:STDOUT: %.loc48_8: i32 = int_literal 0 [template = constants.%.3]
- // CHECK:STDOUT: %.loc48_11: i32 = int_literal 1 [template = constants.%.2]
- // CHECK:STDOUT: %Run2.ref.loc57: %Run2.type = name_ref Run2, file.%Run2.decl [template = constants.%Run2]
- // CHECK:STDOUT: %Run2.ref.loc64: %Run2.type = name_ref Run2, file.%Run2.decl [template = constants.%Run2]
- // CHECK:STDOUT: %.loc64: i32 = int_literal 0 [template = constants.%.3]
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|