Skip to content

Instantly share code, notes, and snippets.

@rubber-duck
Created May 16, 2013 11:13
Show Gist options
  • Save rubber-duck/5591003 to your computer and use it in GitHub Desktop.
Save rubber-duck/5591003 to your computer and use it in GitHub Desktop.
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