mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
15 lines
196 B
D
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");
|
|
}
|