Merge pull request #888 from zyedidia/fix-885
Fixes https://github.com/dlang-community/D-Scanner/issues/885
This commit is contained in:
commit
9abcf49544
|
@ -161,7 +161,8 @@ const(DSymbol)*[] resolveSymbol(const Scope* sc, const istring[] symbolChain)
|
||||||
{
|
{
|
||||||
if (symbol.kind == CompletionKind.variableName
|
if (symbol.kind == CompletionKind.variableName
|
||||||
|| symbol.kind == CompletionKind.memberVariableName
|
|| symbol.kind == CompletionKind.memberVariableName
|
||||||
|| symbol.kind == CompletionKind.functionName)
|
|| symbol.kind == CompletionKind.functionName
|
||||||
|
|| symbol.kind == CompletionKind.aliasName)
|
||||||
symbol = symbol.type;
|
symbol = symbol.type;
|
||||||
if (symbol is null)
|
if (symbol is null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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