commit | de7394157c3f83af55053128178aa71bdb08101c | [log] [tgz] |
---|---|---|
author | Fariborz Jahanian <fjahanian@apple.com> | Fri Dec 05 01:35:25 2008 +0000 |
committer | Fariborz Jahanian <fjahanian@apple.com> | Fri Dec 05 01:35:25 2008 +0000 |
tree | b54eb65619d9cfd018c5766f8425e0b9a472680e | |
parent | f3d416267ec92cf28da11a79b47383179b77c5d0 [diff] [blame] |
Patch for diagnosing type mismatch between methods in class and its implementation. This is work in progress. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60573 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaObjC/method-def-1.m b/test/SemaObjC/method-def-1.m index c1cd629..7948eed 100644 --- a/test/SemaObjC/method-def-1.m +++ b/test/SemaObjC/method-def-1.m
@@ -16,6 +16,6 @@ @implementation MyClass - (void)myMethod { } -- (void)myMethod2 { } +- (vid)myMethod2 { } // expected-error {{expected a type}} @end