You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/elixir/test/elixir/module/types/integration_test.exs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -335,7 +335,7 @@ defmodule Module.Types.IntegrationTest do
335
335
""",
336
336
"the 1st argument is empty (often represented as none())",
337
337
"""
338
-
typing violation found at:
338
+
type warning found at:
339
339
│
340
340
2 │ def error(), do: private(raise "oops")
341
341
│ ~
@@ -348,7 +348,7 @@ defmodule Module.Types.IntegrationTest do
348
348
private(List.to_tuple(x))
349
349
""",
350
350
"""
351
-
typing violation found at:
351
+
type warning found at:
352
352
│
353
353
3 │ def public(x), do: private(List.to_tuple(x))
354
354
│ ~
@@ -489,7 +489,7 @@ defmodule Module.Types.IntegrationTest do
489
489
490
490
hint: defimpl for Range requires its callbacks to match exclusively on %Range{}
491
491
492
-
typing violation found at:
492
+
type warning found at:
493
493
│
494
494
6 │ def itself(nil), do: nil
495
495
│ ~~~~~~~~~~~~~~~~~~~~~~~~
@@ -530,9 +530,9 @@ defmodule Module.Types.IntegrationTest do
530
530
531
531
but the NoImplProtocol protocol was not yet implemented for any type and therefore will always fail.
532
532
533
-
This warning will disappear once you define a implementation. If the protocol is part of a library, you may define a dummy implementation for development/test.
533
+
This message will disappear once you define a implementation. If the protocol is part of a library, you may define a dummy implementation for development/test.
534
534
535
-
typing violation found at:
535
+
type warning found at:
536
536
│
537
537
3 │ NoImplProtocol.callback(:hello)
538
538
│ ~
@@ -714,7 +714,7 @@ defmodule Module.Types.IntegrationTest do
0 commit comments