Add unit test

This commit is contained in:
Zachary Yedidia 2023-01-31 23:32:52 -08:00
parent 62297fdf7b
commit 3437e30cac
1 changed files with 15 additions and 0 deletions

View File

@ -132,6 +132,21 @@ unittest
}
}c.format(UnusedResultChecker.MSG), sac);
assertAnalyzerWarnings(q{
struct Foo
{
static bool get()
{
return false;
}
}
alias Bar = Foo;
void main()
{
Bar.get(); // [warn]: %s
}
}c.format(UnusedResultChecker.MSG), sac);
assertAnalyzerWarnings(q{
void main()
{