mirror of
https://github.com/github/codeql.git
synced 2026-01-29 14:23:03 +01:00
10 lines
154 B
Plaintext
10 lines
154 B
Plaintext
import cpp
|
|
|
|
from Assignment a
|
|
select a,
|
|
a.getLValue() as l,
|
|
l.getType().explain(),
|
|
a.getRValue() as r,
|
|
r.getType().explain()
|
|
|