[ms-inline asm] Test case for r170037.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170038 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/ms-inline-asm.c b/test/Sema/ms-inline-asm.c
index 8cdd547..538d56a 100644
--- a/test/Sema/ms-inline-asm.c
+++ b/test/Sema/ms-inline-asm.c
@@ -31,5 +31,8 @@
   __asm {
     mov eax, LENGTH foo // expected-error {{Unsupported directive!}}
   }
-
+  f();
+  __asm {
+    mov eax, TYPE bar // expected-error {{Unable to lookup TYPE of expr!}}
+  }
 }