File: fn_with_too_many_args.stderr

package info (click to toggle)
rust-test-casing 0.1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 300 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 248 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
error: tested function must have no more than 7 args
  --> tests/ui/fn_with_too_many_args.rs:4:1
   |
4  | / fn tested_function(
5  | |     _arg0: i32,
6  | |     _arg1: i32,
7  | |     _arg2: i32,
...  |
12 | |     _arg7: i32,
13 | | ) {
   | |_^