[NFC][asan] clang-format the test

GitOrigin-RevId: e7376adbeac0e9884556d767200cbb8abdd4f350
diff --git a/test/asan/TestCases/contiguous_container.cpp b/test/asan/TestCases/contiguous_container.cpp
index f54c4d3..8c78379 100644
--- a/test/asan/TestCases/contiguous_container.cpp
+++ b/test/asan/TestCases/contiguous_container.cpp
@@ -2,11 +2,11 @@
 //
 // Test __sanitizer_annotate_contiguous_container.
 
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
 #include <assert.h>
 #include <sanitizer/asan_interface.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 
 static constexpr size_t kGranularity = 8;
 
@@ -87,11 +87,9 @@
   delete[] buffer;
 }
 
-__attribute__((noinline))
-void Throw() { throw 1; }
+__attribute__((noinline)) void Throw() { throw 1; }
 
-__attribute__((noinline))
-void ThrowAndCatch() {
+__attribute__((noinline)) void ThrowAndCatch() {
   try {
     Throw();
   } catch (...) {