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

Rework resolve for variables #198

Closed
ignatov opened this issue Apr 8, 2013 · 3 comments
Closed

Rework resolve for variables #198

ignatov opened this issue Apr 8, 2013 · 3 comments
Labels
Enhancement Ticket describes a possible improvement prio:Major

Comments

@ignatov
Copy link
Owner

ignatov commented Apr 8, 2013

http://www.erlang.org/course/advanced.html
Also see talk with Maxim.

@ignatov
Copy link
Owner Author

ignatov commented Jul 23, 2013

Another comment from Sorra (via email):

case dothing() of
   V1 ->
      V2 = 1; %% will be prompted to "unused variable as warning"
   _ ->
      V2 = 2;
end,
V2   %%V2 is used

@huang1196
Copy link

So how to deal with this issue?

case dothing() of
V1 ->
V2 = 1; %% will be prompted to "unused variable as warning"
_ ->
V2 = 2;
end,
V2 %%V2 is used

@ignatov
Copy link
Owner Author

ignatov commented Mar 25, 2014

@huang1196 Thanks for reminder, we'll do our best to resolve this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement Ticket describes a possible improvement prio:Major
Projects
None yet
Development

No branches or pull requests

2 participants