We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e6cd6 commit 6f0d0beCopy full SHA for 6f0d0be
test/stdlib/Class_test.rb
@@ -39,13 +39,13 @@ def test_initialize
39
assert_send_type "() -> void",
40
Class.allocate, :initialize
41
42
- assert_send_type "() { (Class) [self: untyped] -> void } -> void",
+ assert_send_type "() { (Class) [self: Class] -> void } -> void",
43
Class.allocate, :initialize do end
44
45
assert_send_type "(Class) -> void",
46
Class.allocate, :initialize, String
47
48
- assert_send_type "(Class) { (Class) [self: untyped] -> void } -> void",
+ assert_send_type "(Class) { (Class) [self: Class] -> void } -> void",
49
Class.allocate, :initialize, String do end
50
end
51
0 commit comments