Guest User

Untitled

a guest
Jan 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. let Foo (a : (int * int) seq) = ();;
  2. val Foo : seq<int * int> -> unit
  3.  
  4. let inline Bar (a : (a' * int) seq) = ();;
  5. let Bar (a : (a' * int) seq) =
  6. --------------^^
  7. stdin(8,15): error FS0039: The type 'a'' is not defined
  8. >
  9.  
  10. let Bar<'a> (a: ('a * int) seq) = ()
Add Comment
Please, Sign In to add comment