1#version 450
2
3float add(float a, float b) {
4    return a + b;
5}
6
7int foo() {
8    return 0;
9}
10