Valters Vingolds
Valters Vingolds
This is great, thank you!
> ```go > func (ap *AProvider) A() *A { > ap.init.Do(func() { > ap.a = A{ /* ... */ } > }) > return &ap.a > } I feel that...
Hi @jozic, I would like to incorporate this into article, because it seriously tripped me up. Thanks! The tutorial first talks about `Int` and `intAdditionMonoid` and then suddenly jumps to...
We just hit this issue. Especially surprising that even a warning is not getting printed. https://github.com/aws/aws-cdk/blob/master/packages/@aws-cdk/aws-iam/lib/role.ts#L227
Would it be possible to keep the old signature around (mark it deprecated, etc), so that existing tutorials and code examples don't break right away. (I mean, tutorials like https://www.rust-lang.org/learn/get-started...
A simpler repro case from #4345: ```java /** * */ public class FailsToParse { } ```