xref: /llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-caching/a.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 typedef float float4;
2 
3 int a();
4 
main()5 int main() {
6   float4 f = 4.0f;
7   // break here
8   return a();
9 }
10