smoke/module/a.rbi in steep-0.5.1 vs smoke/module/a.rbi in steep-0.6.0
- old
+ new
@@ -1,9 +1,9 @@
-interface _Each<'a>
- def each: { ('a) -> any } -> instance
+interface _Each<'a, 'b>
+ def each: { ('a) -> any } -> 'b
end
-module A : _Each<Integer>
+module A : _Each<Integer, A>
def count: () -> Integer
end
module X
def foo: () -> Integer