1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:34:57 +00:00
serenity/Userland/Libraries/LibGLSL/Tests/parser/unary-expression.glsl
2023-08-18 15:29:48 +02:00

6 lines
55 B
GLSL

void foo()
{
int a = 7;
int b = ~(!~++a++);
}