Add unit test
This commit is contained in:
parent
62297fdf7b
commit
3437e30cac
|
@ -132,6 +132,21 @@ unittest
|
||||||
}
|
}
|
||||||
}c.format(UnusedResultChecker.MSG), sac);
|
}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{
|
assertAnalyzerWarnings(q{
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue