Index: test/win/compiler_flags/runtime_library_mdd.cc |
diff --git a/test/win/compiler_flags/runtime_library_mdd.cc b/test/win/compiler_flags/runtime_library_mdd.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c3e612d7505e70ee888bdde543219bf45c79a6c2 |
--- /dev/null |
+++ b/test/win/compiler_flags/runtime_library_mdd.cc |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2012 Google Inc. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef _MT |
+#error |
+#endif |
+ |
+#ifndef _DLL |
+#error |
+#endif |
+ |
+#ifndef _DEBUG |
+#error |
+#endif |
+ |
+int main() { |
+ return 0; |
+} |