~ubuntu-branches/ubuntu/jaunty/ant/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/etc/testcases/taskdefs/fixcrlf/expected/Junk3.java

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Gybas
  • Date: 2002-02-14 14:28:48 UTC
  • Revision ID: james.westby@ubuntu.com-20020214142848-2ww7ynmqkj31vlmn
Tags: upstream-1.4.1
ImportĀ upstreamĀ versionĀ 1.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
public class Junk1 {
 
2
    public boolean mybool;
 
3
    public static void main (String[] args) {
 
4
        System.out.println("I have      a tab");
 
5
        //      Here is a comment with an embedded tab
 
6
        if (mybool) {   /* Here is a multi-line
 
7
                           (with embedded'      'tab)
 
8
            Comment */char mychar = '   ';      //<-tab->       <-
 
9
        } // end of if (mybool)
 
10
        
 
11
    } // end of main ()
 
12
}