Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Symbol redefinition warnings #16173

Merged
merged 4 commits into from
May 4, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix indent in test/core.jl
  • Loading branch information
tkelman committed May 3, 2016
commit e0ea91298173c953dc933b13a17fbbb8186a60c7
8 changes: 4 additions & 4 deletions test/core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3870,11 +3870,11 @@ end
# issue #16096
module M16096
macro iter()
quote
@inline function foo(sub)
it = 1
quote
@inline function foo(sub)
it = 1
end
end
end
end
end
let ex = expand(:(@M16096.iter))
Expand Down