2009-03-13 David Ayers <ayers@fsfe.org>

* objc/execute/trivial.m. New test.

From-SVN: r144858
This commit is contained in:
David Ayers 2009-03-14 14:41:45 +00:00 committed by David Ayers
parent 39b2ac744a
commit e178ae8ee1
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-03-13 David Ayers <ayers@fsfe.org>
* objc/execute/trivial.m. New test.
2009-03-13 Jack Howarth <howarth@bromo.med.uc.edu>
PR target/39137

View File

@ -0,0 +1,7 @@
#import <objc/Object.h>
int main(void)
{
[Object class];
return 0;
}