1// Can't compute the size of declared but not defined struct type
2
3struct Foo;
4
5uniform int bar() {
6    return sizeof(Foo);
7}
8