| # generated from the original tests. |
| # Henceforth it may be nicer to group tests into separate files. |
| t1: strconv.FormatUint(64, 16) |
| t2: strconv.FormatFloat(3.02, 300, 4, 64) |
| t3: strconv.FormatFloat(3.02, -1, 4, 64) |
| t4: strconv.FormatFloat(3.02, 1.0, 4, 64) |
| t5: strconv.FormatBool(true) |
| int 300 overflows byte in argument 1 in call to strconv.FormatFloat: |
| cannot use -1 (type int) as byte in argument 1 to strconv.FormatFloat: |
| t4: cannot use 1.0 (type float) as int in argument 2 to strconv.FormatFloat: |
| // [eval] int 300 overflows byte in argument 1 in call to strconv.FormatFloat: |
| // [eval] cannot use -1 (type int) as byte in argument 1 to strconv.FormatFloat: |
| // [eval] t4: cannot use 1.0 (type float) as int in argument 2 to strconv.FormatFloat: |