diff --git a/tests/mini/compile_funcptr1.d b/tests/mini/compile_funcptr1.d new file mode 100644 index 00000000..f4c1a877 --- /dev/null +++ b/tests/mini/compile_funcptr1.d @@ -0,0 +1,4 @@ +module mini.compile_funcptr1; + +void a() { } +void function() b = &a;