OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc/] [execute/] [formal_protocol-6.m] - Blame information for rev 307

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 307 jeremybenn
/* Contributed by Nicola Pero - Fri Mar  9 21:35:47 CET 2001 */
2
 
3
#include <stdlib.h>
4
#include "../../objc-obj-c++-shared/Protocol1.h"
5
 
6
/* Test defining a protocol, and accessing it using @protocol */
7
 
8
@protocol Evaluating
9
- (int) importance;
10
@end
11
 
12
/* Without a class adopting the protocol - this doesn't work
13
   with gcc-2.95.2 as well */
14
 
15
int main (void)
16
{
17
  Protocol *protocol = @protocol (Evaluating);
18
 
19
#ifdef NEXT_OBJC_USE_NEW_INTERFACE
20
  if (strcmp (protocol_getName(protocol), "Evaluating"))
21
#else
22
  if (strcmp ([protocol name], "Evaluating"))
23
#endif
24
    {
25
      abort ();
26
    }
27
 
28
  return 0;
29
}
30
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.