File: W_FailwithfRedundantArgs.fs

package info (click to toggle)
fsharp 4.0.0.4%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 58,824 kB
  • ctags: 1,395
  • sloc: cs: 2,983; ml: 1,098; makefile: 410; sh: 409; xml: 113
file content (8 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
// #Regression #Diagnostics 
//<Expects status="warning" span="(4,11-4,20)" id="FS3189">Redundant arguments are being ignored in function 'failwithf'\. Expected 3 but got 4 arguments\.$</Expects>
module M
let f() = failwithf "Used %A %s" "this" "but not" "this"
let g() = failwith "Used %A" "this"
let h() =
  let failwithf arg = Printf.ksprintf failwith arg
  failwithf "Used" "Ignored"