Test cases

- Added `simple_comments.t`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-16 08:27:59 +02:00
parent 7e958c5658
commit 158f618ca9
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
module simple_comments;
/**
* Other comment
*/
/**
* Returns 0
*/
int zero()
{
return 0;
}
/**
* Yo fr
*/
int main()
{
int k = zero();
*(cast(int*)0) = zero();
return 0;
}