mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
9 lines
180 B
Plaintext
9 lines
180 B
Plaintext
import cpp
|
|
|
|
from Struct s, string distinct
|
|
where
|
|
distinct = count(Struct x | x.getName() = s.getName())
|
|
+ " different struct(s) called "
|
|
+ s.getName()
|
|
select s, distinct
|