Skip to content

Instantly share code, notes, and snippets.

@madadam
Created September 27, 2010 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madadam/599932 to your computer and use it in GitHub Desktop.
Save madadam/599932 to your computer and use it in GitHub Desktop.
dsss @Property link bug
module foo;
string foo() {
return "foo";
}
module main;
import std.stdio;
import foo;
// uncomment this to make dsss fail.
// @property
string bar() {
return "bar";
}
void main() {
writeln(foo.foo());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment