[from fsbugs] Ported from Codeplex
Simplified repro of root cause:
let rec foo< > c = bar c
and bar c = 0
changing the order of lines 1 and 2 fixes the problem
Original repro:
C:\Users\latkin\Desktop\FSharp.DataFrame-typar-error\FSharp.DataFrame-typar-error\src\Frame.fs(251,28): warning FS0073: internal error: Typar not found during XmlDoc generation
/// [category:Series operations]
member frame.SeriesApply<'T>(strict, f:Func<Series<'TRowKey, 'T>, ISeries<_>>) =
frame.Columns
|> Series.mapValues (fun os ->
match os.TryAs<'T>(strict) with
| OptionalValue.Present s -> f.Invoke s
| _ -> os :> ISeries<_>)
|> Frame<'TRowKey, 'TColumnKey>.FromColumnsNonGeneric
[from fsbugs] Ported from Codeplex
Simplified repro of root cause:
changing the order of lines 1 and 2 fixes the problem
Original repro: