mirror of
https://github.com/dlang/tools.git
synced 2025-05-11 13:25:47 +03:00
16 lines
142 B
D
16 lines
142 B
D
module betterc;
|
|
|
|
///
|
|
unittest
|
|
{
|
|
int a = 1;
|
|
assert(a == 2);
|
|
}
|
|
|
|
///
|
|
unittest
|
|
{
|
|
int b = 2;
|
|
assert(b == 2);
|
|
assert(b == 3);
|
|
}
|