| OLD | NEW |
| 1 /* Make sure Objective-C++ can distinguish ObjC classes from C++ classes. */ | 1 /* Make sure Objective-C++ can distinguish ObjC classes from C++ classes. */ |
| 2 /* Author: Ziemowit Laski <zlaski@apple.com> */ | 2 /* Author: Ziemowit Laski <zlaski@apple.com> */ |
| 3 | 3 |
| 4 /* { dg-do compile } */ | 4 /* { dg-do compile } */ |
| 5 | 5 |
| 6 #include <objc/Object.h> | 6 #include "../objc-obj-c++-shared/Object1.h" |
| 7 #include <iostream> | 7 #include <iostream> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 @interface iostream: Object | 10 @interface iostream: Object |
| 11 @end | 11 @end |
| 12 | 12 |
| 13 int main(void) { | 13 int main(void) { |
| 14 id i = [std::iostream new]; /* { dg-warning "not an Objective\\-C class name
or alias" } */ | 14 id i = [std::iostream new]; /* { dg-warning "not an Objective\\-C class name
or alias" } */ |
| 15 i = [iostream new]; | 15 i = [iostream new]; |
| 16 i = [std::basic_string<char> new]; /* { dg-warning "not an Objective\\-C clas
s name or alias" } */ | 16 i = [std::basic_string<char> new]; /* { dg-warning "not an Objective\\-C clas
s name or alias" } */ |
| 17 | 17 |
| 18 return 0; | 18 return 0; |
| 19 } | 19 } |
| OLD | NEW |