IDE: Visual Studio X/Fire
Version: 10.0.0.2411 (develop)
Target (If relevant): OSX
Description:
After a constrained generic parameter, the compiler wrongly does not allow an unconstrained generic parameter.
Expected Behavior:
Compiles.
Actual Behavior:
E28
Steps:
protocol P {}
struct S<T: P, U> { // E28 Unknown type "U"
}