Microsvuln 98989f1088
Add new line
Add new line
2021-04-16 15:45:22 +04:30

11 lines
203 B
Plaintext

import cpp
class HexOrOctLiteral extends Literal{
HexOrOctLiteral(){
(this instanceof HexLiteral) or (this instanceof OctalLiteral)
}
}
from HexOrOctLiteral lit
select lit.getValueText()