mirror of
https://github.com/github/codeql.git
synced 2026-05-06 06:05:19 +02: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() |