iswiftapp / iswift

Objective-C to Swift Converter
30 stars 3 forks source link

Double initializers not recognized in "for" statements #185

Open drkameleon opened 8 years ago

drkameleon commented 8 years ago

Example:

for (int k=0, i=0; k<10; k++, ++i) {
       NSLog(@"K = %d, i=%d", k, i);
}