mirror of
https://github.com/github/codeql.git
synced 2026-03-21 23:16:53 +01:00
12 lines
301 B
Plaintext
12 lines
301 B
Plaintext
/**
|
|
* @name VirtualFunctions6
|
|
* @description Test of getAnOverridingFunction in a hierarchy with virtual inheritance
|
|
* @kind table
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from VirtualFunction f
|
|
where
|
|
f.getDeclaringType().getName().matches("Y%")
|
|
select f.getDeclaringType(), f.getAnOverridingFunction().getDeclaringType() |