dmd/compiler/test/runnable/testmainb.d
2022-07-09 18:53:07 +02:00

15 lines
196 B
D

/*
Test that -main does nothing when main is already defined
REQUIRED_ARGS: -main
RUN_OUTPUT:
---
Success
---
*/
extern(C) int printf(const char*, ...);
void main()
{
printf("Success\n");
}