Re: MinGW GDC updates

2013-01-12 Thread Vladimir Panteleev
On Sunday, 13 January 2013 at 00:07:45 UTC, Andrej Mitrovic wrote: On 1/13/13, Vladimir Panteleev wrote: I tracked down the problem to the TDM-GCC installer linked in your post. It appears that even though the installer is from an older version, it will still download the latest one (4.7.1), a

Re: MinGW GDC updates

2013-01-12 Thread Andrej Mitrovic
On 1/13/13, Vladimir Panteleev wrote: > I tracked down the problem to the TDM-GCC installer linked in > your post. It appears that even though the installer is from an > older version, it will still download the latest one (4.7.1), and > not even give you an option to select an older version. The

Re: MinGW GDC updates

2013-01-12 Thread Vladimir Panteleev
On Tuesday, 8 January 2013 at 20:52:48 UTC, Daniel Green wrote: A new binary has been posted. This contains GDC master up to Nov. 28th. Hi Daniel, Thank you for your work so far. I ran into some issues after following the installation instructions. I was getting the following error: gdc:

[Issue 35] Potentially wrong code with template alias parameters and nested functions

2013-01-12 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=35 --- Comment #4 from Johannes Pfau 2013-01-12 18:29:07 UTC --- Yes, the patch was only a quick test, it's not ready for merging. It's a little bit annoying that it can't detect complicated cases as the hasNestedArgs check in the frontend doesn't d

[Issue 35] Potentially wrong code with template alias parameters and nested functions

2013-01-12 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=35 --- Comment #3 from Iain Buclaw 2013-01-12 18:23:58 UTC --- Looks fine to me, though the whitespace looks a bit off. :) -- Configure issuemail: http://gdcproject.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because:

[Issue 35] Potentially wrong code with template alias parameters and nested functions

2013-01-12 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=35 Johannes Pfau changed: What|Removed |Added CC||johannesp...@gmail.com -- Configure issu

[Issue 35] Potentially wrong code with template alias parameters and nested functions

2013-01-12 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=35 --- Comment #2 from Johannes Pfau 2013-01-12 18:18:21 UTC --- Created attachment 26 --> http://gdcproject.org/bugzilla/attachment.cgi?id=26 Simple patch -- Configure issuemail: http://gdcproject.org/bugzilla/userprefs.cgi?tab=email --- Yo

[Issue 35] Potentially wrong code with template alias parameters and nested functions

2013-01-12 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=35 --- Comment #1 from Johannes Pfau 2013-01-12 18:17:40 UTC --- Created attachment 25 --> http://gdcproject.org/bugzilla/attachment.cgi?id=25 test case 2 -- Configure issuemail: http://gdcproject.org/bugzilla/userprefs.cgi?tab=email --- You

[Issue 35] New: Potentially wrong code with template alias parameters and nested functions

2013-01-12 Thread gdc-bugzilla
http://gdcproject.org/bugzilla/show_bug.cgi?id=35 Bug #: 35 Summary: Potentially wrong code with template alias parameters and nested functions Classification: Unclassified Product: GDC Version: development Platform: A

Another verify_cgraph problem

2013-01-12 Thread Johannes Pfau
I reduced another verify_cgraph issue (again, only shown on 4.7 and with --enable-checking=yes). This is the example: --- void parseJSON()(char val) { void error() { } void getChar()() //Scope not set to parseJSON { error(); } void parseString()