Refactoring work. ObjcQualifiedIdType is now derived from 'Type'.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45174 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/id-test-3.m b/test/Sema/id-test-3.m
index 5331888..a340348 100644
--- a/test/Sema/id-test-3.m
+++ b/test/Sema/id-test-3.m
@@ -1,4 +1,4 @@
-// RUN: clang -rewrite-test %s
+// RUN: clang -rewrite-test %s | clang
 
 @protocol P
 - (id<P>) Meth: (id<P>) Arg;
@@ -9,6 +9,6 @@
 @end
 
 @implementation INTF
-- (id<P>)IMeth { return [(id<P>)self Meth: 0]; }
+- (id<P>)IMeth { return [(id<P>)self Meth: (id<P>)0]; }
 - (id<P>) Meth : (id<P>) Arg {}
 @end