Merge pull request #888 from zyedidia/fix-885

Fixes https://github.com/dlang-community/D-Scanner/issues/885
This commit is contained in:
Jan Jurzitza 2023-02-01 10:54:36 +01:00 committed by GitHub
commit 9abcf49544
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

@ -161,7 +161,8 @@ const(DSymbol)*[] resolveSymbol(const Scope* sc, const istring[] symbolChain)
{
if (symbol.kind == CompletionKind.variableName
|| symbol.kind == CompletionKind.memberVariableName
|| symbol.kind == CompletionKind.functionName)
|| symbol.kind == CompletionKind.functionName
|| symbol.kind == CompletionKind.aliasName)
symbol = symbol.type;
if (symbol is null)
{

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()
{