mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
183 B
D
14 lines
183 B
D
extern (C++)
|
|
{
|
|
double twice(double d)
|
|
{
|
|
return d * 2;
|
|
}
|
|
|
|
void* createFunction(R)(R function(double));
|
|
}
|
|
|
|
void main()
|
|
{
|
|
const f = createFunction(&twice);
|
|
}
|