mirror of
https://github.com/github/codeql.git
synced 2026-01-28 13:53:10 +01:00
12 lines
304 B
Plaintext
12 lines
304 B
Plaintext
/**
|
|
* @name VirtualFunctions5
|
|
* @description Test of getAnOverridingFunction in a hierarchy with no virtual inheritance
|
|
* @kind table
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from VirtualFunction f
|
|
where
|
|
f.getDeclaringType().getName().matches("X%")
|
|
select f.getDeclaringType(), f.getAnOverridingFunction().getDeclaringType() |