Changes between Version 2 and Version 3 of Ticket #3
- Timestamp:
- 11/10/14 12:24:34 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3 – description
v2 v3 10 10 public interface IContinuation<T0, T1> : IParam<T0>, IParam<T1> { } 11 11 }}} 12 Basically, this is only an error when defined for the same type parameters at the *use* site, not at the *declaration* site, but C# doesn't d o this.12 Basically, this is only an error when defined for the same type parameters at the *use* site, not at the *declaration* site, but C# doesn't defer this check as I think it should. 13 13 14 14 This still wouldn't help for case 2 though, so we need a runtime check regardless. Fortunately, this can be checked once when the type is first loaded as a continuation.