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

Issue 9312 - With statement diagnostic is wrong #1479

Merged
merged 1 commit into from Jan 14, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/statement.c
Original file line number Diff line number Diff line change
Expand Up @@ -4538,7 +4538,7 @@ Statement *WithStatement::semantic(Scope *sc)
sym->parent = sc->scopesym;
}
else
{ error("with expressions must be class objects, not '%s'", exp->type->toChars());
{ error("with expressions must be aggregate types, not '%s'", exp->type->toChars());
return NULL;
}
}
Expand Down
13 changes: 13 additions & 0 deletions test/fail_compilation/diag9312.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
TEST_OUTPUT:
---
fail_compilation/diag9312.d(10): Error: with expressions must be aggregate types, not 'int'
---
*/

void main()
{
with (1)
{
}
}