1#version 430 core
2
3#extension GL_EXT_shared_memory_block : enable
4#extension GL_EXT_shader_explicit_arithmetic_types: enable
5
6layout(local_size_x = 2) in;
7
8shared first
9{
10    int16_t a;
11    float16_t f;
12};
13
14void main()
15{
16    a = int16_t(3);
17    f = float16_t(12.3);
18}
19