diff --git a/compiler/frontend/src/jet/Library.jet b/compiler/frontend/src/jet/Library.jet index 41bbd9ae238..4f1d451144c 100644 --- a/compiler/frontend/src/jet/Library.jet +++ b/compiler/frontend/src/jet/Library.jet @@ -96,7 +96,7 @@ trait Range> { fun contains(item : T) : Boolean } -class IntRange> : Range, Iterable { +class IntRange>(val start : Int, val end : Int) : Range, Iterable { }