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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc/] [execute/] [formal_protocol-6.m] - Blame information for rev 702

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

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