We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a2286f commit 9b65c95Copy full SHA for 9b65c95
test/runtests.jl
@@ -17,7 +17,7 @@ function naive_sum(xs)
17
return s
18
end
19
20
-foo(x) = x+y
+f(x) = x+y
21
22
function f2(x)
23
foo = y
@@ -63,7 +63,7 @@ my_stable_add_undecorated(y) = my_add(y)
63
ws = Traceur.warnings(() -> naive_sum([1.0]))
64
@test warns_for(ws, "assigned", "returns")
65
66
- ws = Traceur.warnings(() -> foo(1))
+ ws = Traceur.warnings(() -> f(1))
67
@test warns_for(ws, "global", "dispatch", "returns")
68
69
ws = Traceur.warnings(() -> f2(1))
0 commit comments