anybody working on OpenCL bindings?

2009-09-29 Thread Trass3r
Is anybody already working on OpenCL bindings now that Nvidia finally released a public OpenCL driver?

Workaround for installing D1 on a directory with spaces on Windows

2009-09-29 Thread Phil Deets
I really wanted to get D1 to work in a path with spaces, but it couldn't seem to find the phobos library even if I hardcoded the path in sc.ini and used quotes. I came up with a workaround that I thought I would share. I just used the short version of the path which is intended for DOS

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Tim Matthews
Trass3r wrote: Is anybody already working on OpenCL bindings now that Nvidia finally released a public OpenCL driver? If no one has started on a D binding then maybe a C# binding would be an ideal start? http://www.opentk.com/news/C%2523-opencl-bindings-ready-for-testing

Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread Don
In the docs for return statement in statement.html it says: --- ReturnStatement: return; return Expression ; Expression is allowed even if the function specifies a void return type. The Expression will be evaluated, but nothing will be returned. This makes sense for things we

Re: Rich Hickey's slides from jvm lang summit - worth a read?

2009-09-29 Thread Chris Nicholson-Sauls
bearophile wrote: Walter Bright: I've been thinking of transitioning dmd's semantic analysis to using immutable data structures because it will reduce allocations, not increase them. As usual I am ignorant about such matters, so I can't give you a good answer. But from what I've seen in

Re: Rich Hickey's slides from jvm lang summit - worth a read?

2009-09-29 Thread Rainer Deyke
Chris Nicholson-Sauls wrote: My personal experience with Scala, at least, has been that it doesn't hurt anything. Scala uses the Java garbage collector, which can take all kinds of abuse without flinching. -- Rainer Deyke - rain...@eldwood.com

Re: The Non-Virtual Interface idiom in D

2009-09-29 Thread Don
Andrei Alexandrescu wrote: In this article: http://www.gotw.ca/publications/mill18.htm Herb Sutter makes a powerful argument that overridable functions (customization points) should actually not be the same as the publically available interface. This view rhymes with the Template Method

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread bearophile
Don: In the docs for return statement in statement.html it says: --- ReturnStatement: return; return Expression ; Expression is allowed even if the function specifies a void return type. The Expression will be evaluated, but nothing will be returned. I agree that making the

Common ground. Re: Null references redux

2009-09-29 Thread Don
Walter Bright wrote: Denis Koroskin wrote: On Sat, 26 Sep 2009 22:30:58 +0400, Walter Bright newshou...@digitalmars.com wrote: D has borrowed ideas from many different languages. The trick is to take the good stuff and avoid their mistakes g. How about this one:

Re: Null references redux + Cyclone

2009-09-29 Thread bearophile
Walter Bright: No, it is done with one indirection. If even Andrei, a quite intelligent person that has written big books on C++, may be wrong on such a basic thing, then I think there's a problem. It can be good to create an html page that explains how some basic things of D are implemented

Re: Common ground. Re: Null references redux

2009-09-29 Thread bearophile
Don: Maybe if D had better flow analysis, the demand for non-nullable references wouldn't be so great. I know a good enough C# programmer that agrees with you, he says that thanks to the flow analysis C#compiler performs, the need for non-nullable references is not so strong. (Neither is

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread Jason House
bearophile Wrote: Don: In the docs for return statement in statement.html it says: --- ReturnStatement: return; return Expression ; Expression is allowed even if the function specifies a void return type. The Expression will be evaluated, but nothing will be

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread Michel Fortin
On 2009-09-29 07:23:54 -0400, bearophile bearophileh...@lycos.com said: This makes sense for things we definitely want to allow, such as: void foo() { return bar(); } where bar() is another void function. If bar() is a void function then return bar(); looks like a bug. Why do you want to

Re: The Non-Virtual Interface idiom in D

2009-09-29 Thread Bill Baxter
On Tue, Sep 29, 2009 at 4:04 AM, Don nos...@nospam.com wrote: Andrei Alexandrescu wrote: In this article: http://www.gotw.ca/publications/mill18.htm Herb Sutter makes a powerful argument that overridable functions (customization points) should actually not be the same as the publically

Brain-limited informatics problems

2009-09-29 Thread bearophile
The following is a quote from the transcript of this: http://www.infoq.com/interviews/armstrong-peyton-jones-erlang-haskell (To see the whole transcript click on the show all button, and then select no style if you use Firefox). This part of the dialogue shows a possible usage for pure (or more

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread Justin Johansson
Don Wrote: In the docs for return statement in statement.html it says: --- ReturnStatement: return; return Expression ; Expression is allowed even if the function specifies a void return type. The Expression will be evaluated, but nothing will be returned. This makes

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread Denis Koroskin
On Tue, 29 Sep 2009 15:43:55 +0400, Jason House jason.james.ho...@gmail.com wrote: bearophile Wrote: Don: In the docs for return statement in statement.html it says: --- ReturnStatement: return; return Expression ; Expression is allowed even if the function specifies a

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread Andrei Alexandrescu
Don wrote: In the docs for return statement in statement.html it says: --- ReturnStatement: return; return Expression ; Expression is allowed even if the function specifies a void return type. The Expression will be evaluated, but nothing will be returned. This makes sense for

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread Ary Borenszweig
Jason House wrote: bearophile Wrote: Don: In the docs for return statement in statement.html it says: --- ReturnStatement: return; return Expression ; Expression is allowed even if the function specifies a void return type. The Expression will be evaluated, but nothing will be

Re: Rich Hickey's slides from jvm lang summit - worth a read?

2009-09-29 Thread Justin Johansson
Chris Nicholson-Sauls Wrote: bearophile wrote: Walter Bright: I've been thinking of transitioning dmd's semantic analysis to using immutable data structures because it will reduce allocations, not increase them. As usual I am ignorant about such matters, so I can't give you a

Re: Why not move cast to the standard library?

2009-09-29 Thread Don
Adam D. Ruppe wrote: On Fri, Sep 25, 2009 at 09:29:21AM +0200, Don wrote: I demonstrated that the combination of CTFE + string mixins, even in D1, was dramatically more powerful than the proposed macros. It became clear that we didn't have a macro design that was anywhere near powerful

Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
Derek Parnell wrote: On Mon, 28 Sep 2009 19:27:03 -0500, Andrei Alexandrescu wrote: language_fan wrote: int min; foreach(int value; list) if (value min) min = value; Oops, you forgot to define a flag variable or initialize to int.min You mean int.max :o). if (list.length == 0)

Re: Null references redux + Cyclone

2009-09-29 Thread Jeremie Pelletier
bearophile wrote: Walter Bright: No, it is done with one indirection. If even Andrei, a quite intelligent person that has written big books on C++, may be wrong on such a basic thing, then I think there's a problem. It can be good to create an html page that explains how some basic things

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Trass3r
Tim Matthews schrieb: If no one has started on a D binding then maybe a C# binding would be an ideal start? http://www.opentk.com/news/C%2523-opencl-bindings-ready-for-testing There also is a semiofficial C++ binding (http://www.khronos.org/registry/cl/) and one for Java

Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
Yigal Chripun wrote: On 29/09/2009 00:31, Nick Sabalausky wrote: Yigal Chripunyigal...@gmail.com wrote in message news:h9r37i$tg...@digitalmars.com... These aren't just marginal performance gains, they can easily be up to 15-30% improvements, sometimes 50% and more. If this is too complex

Comparing apples and oranges

2009-09-29 Thread Andrei Alexandrescu
Consider: class Apple {} class Orange {} void main() { writeln(new Apple == new Orange); } This program always prints false. By and large, it is odd that one would attempt comparison between unrelated classes. I was thinking, is this ever legitimate, or we should just disallow it

Re: Common ground. Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
bearophile wrote: Don: Maybe if D had better flow analysis, the demand for non-nullable references wouldn't be so great. I know a good enough C# programmer that agrees with you, he says that thanks to the flow analysis C#compiler performs, the need for non-nullable references is not so

Re: The Non-Virtual Interface idiom in D

2009-09-29 Thread Jeremie Pelletier
Bill Baxter wrote: On Tue, Sep 29, 2009 at 4:04 AM, Don nos...@nospam.com wrote: Andrei Alexandrescu wrote: In this article: http://www.gotw.ca/publications/mill18.htm Herb Sutter makes a powerful argument that overridable functions (customization points) should actually not be the same as

Re: Comparing apples and oranges

2009-09-29 Thread Jeremie Pelletier
Andrei Alexandrescu wrote: Consider: class Apple {} class Orange {} void main() { writeln(new Apple == new Orange); } This program always prints false. By and large, it is odd that one would attempt comparison between unrelated classes. I was thinking, is this ever legitimate, or we

Re: Comparing apples and oranges

2009-09-29 Thread Ary Borenszweig
Andrei Alexandrescu wrote: Consider: class Apple {} class Orange {} void main() { writeln(new Apple == new Orange); } This program always prints false. By and large, it is odd that one would attempt comparison between unrelated classes. I was thinking, is this ever legitimate, or we

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Jeremie Pelletier
Trass3r wrote: Tim Matthews schrieb: If no one has started on a D binding then maybe a C# binding would be an ideal start? http://www.opentk.com/news/C%2523-opencl-bindings-ready-for-testing There also is a semiofficial C++ binding (http://www.khronos.org/registry/cl/) and one for Java

Re: Comparing apples and oranges

2009-09-29 Thread Denis Koroskin
On Tue, 29 Sep 2009 18:54:28 +0400, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Consider: class Apple {} class Orange {} void main() { writeln(new Apple == new Orange); } This program always prints false. By and large, it is odd that one would attempt comparison

Re: Common ground. Re: Null references redux

2009-09-29 Thread bearophile
Jeremie Pelletier: Flow analysis must be implemented by the compiler, nonnull references can be enforced by a runtime wrapper The point of nonnull references is all in its compile-time enforced constraints. Besides DMD must have some basic flow analysis already since it does notice when

Re: Comparing apples and oranges

2009-09-29 Thread bearophile
Denis Koroskin: BTW, nowadays, they define IComparableT interface, which is a recommended way to implement comparison functions. That's why I'm all for removing opEquals from Object. I think that asks for some extra optimizations that I think currently D front-end doesn't perform. Bye,

Re: Comparing apples and oranges

2009-09-29 Thread Jarrett Billingsley
On Tue, Sep 29, 2009 at 11:17 AM, Denis Koroskin 2kor...@gmail.com wrote: I believe Java and C# took bool Object.equals(Object other); way because they lacked generics intially and stored all the instances as Objects in containers (having equals method in Object allowed them proper ordering

Re: Common ground. Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
bearophile wrote: Jeremie Pelletier: Flow analysis must be implemented by the compiler, nonnull references can be enforced by a runtime wrapper The point of nonnull references is all in its compile-time enforced constraints. Besides DMD must have some basic flow analysis already since it

Re: opApply ref and const iterators

2009-09-29 Thread Steven Schveighoffer
On Mon, 28 Sep 2009 18:58:01 -0400, gzp ga...@freemail.hu wrote: Hello, Iám new to D so i might be all wrong. Given the code: class Foo { int opApply( int delegate(ref real) dg ) {...} //A. int opApply( int delegate(real) dg ) {...} // B, } ... Foo foo = new Foo;

Re: The Non-Virtual Interface idiom in D

2009-09-29 Thread Don
Bill Baxter wrote: On Tue, Sep 29, 2009 at 4:04 AM, Don nos...@nospam.com wrote: Andrei Alexandrescu wrote: In this article: http://www.gotw.ca/publications/mill18.htm Herb Sutter makes a powerful argument that overridable functions (customization points) should actually not be the same as

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Trass3r
Jeremie Pelletier schrieb: http://www.2shared.com/file/8117304/76c7c9ac/OpenCL.html I wrote these some time ago after first hearing about OpenCL, only to realize there was no implementations yet. Then I got a new laptop with a 9800M only to realize ATI had an OpenCL driver available days

Re: Null references redux

2009-09-29 Thread Steven Schveighoffer
On Mon, 28 Sep 2009 21:43:20 -0400, Jesse Phillips jessekphill...@gmail.com wrote: On Mon, 28 Sep 2009 16:01:10 -0400, Steven Schveighoffer wrote: On Mon, 28 Sep 2009 15:35:07 -0400, Jesse Phillips jesse.k.phillip...@gmail.com wrote: language_fan Wrote: Have you ever used functional

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Jeremie Pelletier
Trass3r wrote: Jeremie Pelletier schrieb: http://www.2shared.com/file/8117304/76c7c9ac/OpenCL.html I wrote these some time ago after first hearing about OpenCL, only to realize there was no implementations yet. Then I got a new laptop with a 9800M only to realize ATI had an OpenCL driver

Re: Comparing apples and oranges

2009-09-29 Thread Andrei Alexandrescu
Ary Borenszweig wrote: Andrei Alexandrescu wrote: Consider: class Apple {} class Orange {} void main() { writeln(new Apple == new Orange); } This program always prints false. By and large, it is odd that one would attempt comparison between unrelated classes. I was thinking, is this

Re: Comparing apples and oranges

2009-09-29 Thread Andrei Alexandrescu
Denis Koroskin wrote: On Tue, 29 Sep 2009 18:54:28 +0400, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Consider: class Apple {} class Orange {} void main() { writeln(new Apple == new Orange); } This program always prints false. By and large, it is odd that one would

Re: The Non-Virtual Interface idiom in D

2009-09-29 Thread Bill Baxter
On Tue, Sep 29, 2009 at 8:46 AM, Don nos...@nospam.com wrote: Bill Baxter wrote: On Tue, Sep 29, 2009 at 4:04 AM, Don nos...@nospam.com wrote: Andrei Alexandrescu wrote: In this article: http://www.gotw.ca/publications/mill18.htm Herb Sutter makes a powerful argument that overridable

Re: The Non-Virtual Interface idiom in D

2009-09-29 Thread Andrei Alexandrescu
Bill Baxter wrote: On Tue, Sep 29, 2009 at 8:46 AM, Don nos...@nospam.com wrote: Bill Baxter wrote: And also, is this statement true? since C++ programmers tend to when in doubt, make it virtual Do they? (Might be true, but I don't remember ever hearing it anywhere else). They might in

Re: Null references redux

2009-09-29 Thread Sean Kelly
== Quote from Jeremie Pelletier (jerem...@gmail.com)'s article Andrei Alexandrescu wrote: Jeremie Pelletier wrote: Is this Linux specific? what about other *nix systems, like BSD and solaris? Signal handler are standard to most *nix platforms since they're part of the posix C standard

Re: Null references redux

2009-09-29 Thread Sean Kelly
== Quote from Sean Kelly (s...@invisibleduck.org)'s article One thing I'm not entirely sure about is whether the signal handler will always have a valid, C-style call stack tracing back into user code. These errors are triggered by hardware, and I really don't know what kind of tricks are

Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
Sean Kelly wrote: == Quote from Jeremie Pelletier (jerem...@gmail.com)'s article Andrei Alexandrescu wrote: Jeremie Pelletier wrote: Is this Linux specific? what about other *nix systems, like BSD and solaris? Signal handler are standard to most *nix platforms since they're part of the posix

Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
Sean Kelly wrote: == Quote from Sean Kelly (s...@invisibleduck.org)'s article One thing I'm not entirely sure about is whether the signal handler will always have a valid, C-style call stack tracing back into user code. These errors are triggered by hardware, and I really don't know what kind

Re: Comparing apples and oranges

2009-09-29 Thread Yigal Chripun
On 29/09/2009 18:13, Andrei Alexandrescu wrote: Denis Koroskin wrote: On Tue, 29 Sep 2009 18:54:28 +0400, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: Consider: class Apple {} class Orange {} void main() { writeln(new Apple == new Orange); } This program always prints false. By

Re: Null references redux + Cyclone

2009-09-29 Thread Walter Bright
bearophile wrote: If even Andrei, a quite intelligent person that has written big books on C++, may be wrong on such a basic thing, then I think there's a problem. Not everyone is an expert on everything, and how vptrs and vtbl[]s and casting actually work for multiple inheritance is far from

Re: Null references redux

2009-09-29 Thread Sean Kelly
== Quote from Jeremie Pelletier (jerem...@gmail.com)'s article Sean Kelly wrote: == Quote from Sean Kelly (s...@invisibleduck.org)'s article One thing I'm not entirely sure about is whether the signal handler will always have a valid, C-style call stack tracing back into user code.

Re: Null references redux

2009-09-29 Thread Rainer Deyke
Jeremie Pelletier wrote: struct NonNull(C) if(is(C == class)) { C ref; invariant() { assert(ref !is null); } T opDot() { return ref; } } This only catches null errors at runtime. The whole point of a non-null type is to catch null errors at compile time. -- Rainer Deyke -

Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
Sean Kelly wrote: == Quote from Jeremie Pelletier (jerem...@gmail.com)'s article Sean Kelly wrote: == Quote from Sean Kelly (s...@invisibleduck.org)'s article One thing I'm not entirely sure about is whether the signal handler will always have a valid, C-style call stack tracing back into

Re: Null references redux

2009-09-29 Thread Jeremie Pelletier
Rainer Deyke wrote: Jeremie Pelletier wrote: struct NonNull(C) if(is(C == class)) { C ref; invariant() { assert(ref !is null); } T opDot() { return ref; } } This only catches null errors at runtime. The whole point of a non-null type is to catch null errors at compile time.

Re: Null references redux

2009-09-29 Thread bearophile
Jeremie Pelletier: Its dead easy to insert null into a nonnull reference, If it's easy to put a null into a nonnull by *mistake*, then that system needs to be designed better. and since you expect the type to never be null its the last thing you're gonna check. I agree, but I think in a

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Trass3r
Jeremie Pelletier schrieb: Some thing may have changed since then Yeah, some constants have changed and a few functions. I'm modifying the bindings right now.

Re: Proposal: void f() { return 7; } should be illegal

2009-09-29 Thread grauzone
Denis Koroskin wrote: Unfortunately, you still have to special-case void type in a lot of cases. Here are just 2 examples: And that's why there were ideas to allow declaring void variables. IMHO these void variables should allow all common operations on normal variables (assignment, passing

Re: Null references redux

2009-09-29 Thread Nick Sabalausky
Jeremie Pelletier jerem...@gmail.com wrote in message news:h9tv1s$do...@digitalmars.com... Rainer Deyke wrote: Jeremie Pelletier wrote: struct NonNull(C) if(is(C == class)) { C ref; invariant() { assert(ref !is null); } T opDot() { return ref; } } This only catches null

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Jeremie Pelletier
Trass3r wrote: Jeremie Pelletier schrieb: Some thing may have changed since then Yeah, some constants have changed and a few functions. I'm modifying the bindings right now. Cool, can you post a link to the updated version when you're done? I'm gonna start toying with CL in a week or two

Re: Brain-limited informatics problems

2009-09-29 Thread Walter Bright
bearophile wrote: This part of the dialogue shows a possible usage for pure (or more pure) languages: to correctly implement, avoiding to go mad, very tricky transactional algorithms. D's scope statement specifically addresses transactional safety.

Re: [OT] Modern-day Mac EOLs?

2009-09-29 Thread asd
Marianne Gagnon Wrote: OS X uses \n. \r dates from OS 9 (see http://en.wikipedia.org/wiki/Newline) As simple as that ;) IMHO \r as line separator and MacRoman encoding should be killed with fire. I've had too much trouble with these OS9isms generated by some apps that tried to be nice.

Re: anybody working on OpenCL bindings?

2009-09-29 Thread Trass3r
Here's my current version: http://ul.to/be4o02

Re: Comparing apples and oranges

2009-09-29 Thread Stewart Gordon
Jarrett Billingsley wrote: On Tue, Sep 29, 2009 at 11:17 AM, Denis Koroskin 2kor...@gmail.com wrote: I believe Java and C# took bool Object.equals(Object other); way because they lacked generics intially and stored all the instances as Objects in containers (having equals method in Object

Re: Null references redux

2009-09-29 Thread Rainer Deyke
Jeremie Pelletier wrote: Rainer Deyke wrote: This only catches null errors at runtime. The whole point of a non-null type is to catch null errors at compile time. Thats what flow analysis is for, since these are mostly uninitialized variables rather than null ones. Nitpick: there are no

Object.factory

2009-09-29 Thread Chris Nicholson-Sauls
How reliable is Object.factory? That is, is there any case where the compiled program would lose this functionality (some specific incantation of options to avoid giving the compiler), and is it an actual part of the language specification for Object or a dmd-specific dangerous feature? I'd

Re: ref arguments

2009-09-29 Thread Saaa
Jeremie Pelletier wrote ... Wow, talk about slow.. thanks again for all the help/explanations ! http://bayimg.com/NaeOgaaCC I tried callee/caller but it is just that bit more difficult to distinguish. There should be more diagrams like this.. would make a lot of things a lot easier (to me at

looking for an IDE

2009-09-29 Thread Phil Deets
Hi, I'm new to D and am mostly interested in D2. Is there a Windows IDE with support for D2 debugging, building, and basic code navigation (such as go to definition)? I've been trying a couple different IDEs, but most seem to be focused towards D1. Another nice to have feature would be

Re: looking for an IDE

2009-09-29 Thread Jeremie Pelletier
Phil Deets wrote: Hi, I'm new to D and am mostly interested in D2. Is there a Windows IDE with support for D2 debugging, building, and basic code navigation (such as go to definition)? I've been trying a couple different IDEs, but most seem to be focused towards D1. Another nice to have

Re: looking for an IDE

2009-09-29 Thread Phil Deets
On Tue, 29 Sep 2009 20:09:44 -0500, Jeremie Pelletier jerem...@gmail.com wrote: Phil Deets wrote: Hi, I'm new to D and am mostly interested in D2. Is there a Windows IDE with support for D2 debugging, building, and basic code navigation (such as go to definition)? I've been trying a

[Issue 3344] ICE(e2ir.c) returning an invalid function from main()

2009-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3344 Don clugd...@yahoo.com.au changed: What|Removed |Added Keywords|ice-on-valid-code |ice-on-invalid-code, patch

[Issue 3344] ICE(e2ir.c) returning an invalid function from main()

2009-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3344 --- Comment #3 from Don clugd...@yahoo.com.au 2009-09-29 01:24:55 PDT --- This is happening because when return exp; is changed into exp; return;, the semantic pass never gets run on the expression. --- PATCH: iin statement.c, around line

[Issue 2810] Forward reference to an auto function

2009-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2810 Sobirari Muhomori ma...@pochta.ru changed: What|Removed |Added Summary|Nonsensical forward |Forward reference to

[Issue 3350] New: Missing error message for bug 2788

2009-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3350 Summary: Missing error message for bug 2788 Product: D Version: 2.032 Platform: x86 OS/Version: Windows Status: NEW Keywords: diagnostic Severity: normal

[Issue 2810] Forward reference to an auto function

2009-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2810 Stewart Gordon s...@iname.com changed: What|Removed |Added Keywords||spec --- Comment #4

[Issue 2810] Forward reference to an auto function

2009-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2810 --- Comment #5 from Sobirari Muhomori ma...@pochta.ru 2009-09-29 04:16:12 PDT --- A completely separate bug is actually what you described :) Auto functions are obviously supported, I'm not sure if it's still valid to treat the auto keyword as

[Issue 1170] Cannot forward reference a type defined in a MixinStatement

2009-09-29 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1170 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|