Created
May 16, 2013 11:13
-
-
Save rubber-duck/5591003 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module test; | |
import std.stdio; | |
void foo(T)(T param) { static assert(false, "Not implemented"); } | |
void foo(T:float)(T param) { writeln(param); } | |
int main() | |
{ | |
foo!double(1); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment