diff options
Diffstat (limited to 'lldb/test/python_api/formatters/main.cpp')
| -rw-r--r-- | lldb/test/python_api/formatters/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/formatters/main.cpp b/lldb/test/python_api/formatters/main.cpp index e26467e9fb0..67754de4376 100644 --- a/lldb/test/python_api/formatters/main.cpp +++ b/lldb/test/python_api/formatters/main.cpp @@ -28,12 +28,14 @@ int main(int argc, char const *argv[]) { foo.C = 'e'; foo.D = 6.28; foo.E = 3100419850; + foo.F = 0; FooType bar; bar.A = 1; bar.B = 3.14; bar.C = 'e'; bar.D = 6.28; bar.E = 3100419850; + bar.F = 0; JustAStruct* foo_ptr = &foo; std::vector<int> int_vector; return 0; // Set break point at this line. |

