1intrinsics/ignore/call.wgsl:7:5 warning: use of deprecated intrinsic
2    ignore(f(1, 2, 3));
3    ^^^^^^
4
5#version 310 es
6precision mediump float;
7
8int f(int a, int b, int c) {
9  return ((a * b) + c);
10}
11
12layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
13void tint_symbol() {
14  f(1, 2, 3);
15  return;
16}
17void main() {
18  tint_symbol();
19}
20
21
22