Skip to content

Instantly share code, notes, and snippets.

@AndrejMitrovic
Created September 18, 2019 01:23
Show Gist options
  • Save AndrejMitrovic/dabc6eb389dd6a8ec479224b6aa67c0e to your computer and use it in GitHub Desktop.
Save AndrejMitrovic/dabc6eb389dd6a8ec479224b6aa67c0e to your computer and use it in GitHub Desktop.
extern(C++) public int foo(T)(int function(const(T)* value));
extern(C++) public int bar(T)(int function(ref const(T) value));
void main ()
{
foo!int(null);
bar!int(null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment