~ubuntu-branches/ubuntu/edgy/mcpp/edgy

« back to all changes in this revision

Viewing changes to test-t/u_1_14.t

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2004-10-23 23:18:57 UTC
  • Revision ID: james.westby@ubuntu.com-20041023231857-93z8ff2dgp7m7dpy
Tags: upstream-2.4.1
ImportĀ upstreamĀ versionĀ 2.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* u_1_14.t:    Undefined behaviors on undefined #line syntax.  */
 
2
 
 
3
/* u.1.14:  #line directive without an argument of line number. */
 
4
#line   "filename"
 
5
 
 
6
/* u.1.15:  #line directive with the second argument of other than string
 
7
        literal.    */
 
8
#line   1234    filename
 
9
 
 
10
/* u.1.16:  Excessive argument in #line directive.  */
 
11
#line   2345    "filename"  Junk
 
12
 
 
13
/*  14; "u_1_14.t"; or other undefined results. */
 
14
    __LINE__; __FILE__;
 
15