~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to Puma/tests/bug350/parse.ref

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-06-15 10:17:02 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090615101702-qsr30iptwbxylmo2
Tags: 1.0pre4~svn.20090615-1
* New upstream release.
* don't ignore errors in the postrm script
* avoid spurious creation of empty dir ./usr/sbin/
* improve short descriptions of libpuma-doc and libpuma-dev
* bump Standards-Version to 3.8.1
* bump debhelper compat level to level 7 (latest in stable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Starting parse process...
2
1
void print(char*,...) {
3
2
}
4
3
 
5
4
      int main() {
6
5
  char *msg, *msg1;
7
6
 
8
 
  print( msg     );       // => print(msg)
9
 
 
10
 
  print( msg     );      // => print(msg)
11
 
 
12
 
  print(     msg );      // => print(msg)
13
 
 
14
 
  print( msg1 );     // => print(msg1)
15
 
 
16
 
 
17
 
  print( msg     );       // => print(msg)
18
 
 
19
 
  print( msg ,    );      // => print(msg,)
20
 
 
21
 
  print( msg ,   1 );     // => print(msg,1)
22
 
 
23
 
  print( msg ,   1,2 );   // => print(msg,1,2)
 
7
  print(msg  );       // => print(msg)
 
8
 
 
9
  print(msg  );      // => print(msg)
 
10
 
 
11
  print(  msg);      // => print(msg)
 
12
 
 
13
  print(msg1);     // => print(msg1)
 
14
 
 
15
 
 
16
  print(msg  );       // => print(msg)
 
17
 
 
18
  print(msg  );      // => print(msg,)
 
19
 
 
20
  print(msg,  1);     // => print(msg,1)
 
21
 
 
22
  print(msg,  1,2);   // => print(msg,1,2)
24
23
 
25
24
  
26
25
  return 0;
27
26
}
28
 
Note: Empty program
29
 
No errors