diff options
author | aclement <aclement> | 2005-01-07 13:46:12 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-01-07 13:46:12 +0000 |
commit | e08b5a42e6cd8ec569d3f62e05c0c7c9aa9a585b (patch) | |
tree | 97ab85d6762ad6188f34c01cde1c380f822abb95 /tests/migration/Program.java | |
parent | 83a975d6488eb8cb08e4cdcd7385ce2c0915c309 (diff) | |
download | aspectj-e08b5a42e6cd8ec569d3f62e05c0c7c9aa9a585b.tar.gz aspectj-e08b5a42e6cd8ec569d3f62e05c0c7c9aa9a585b.zip |
Testcode for migration testing
Diffstat (limited to 'tests/migration/Program.java')
-rw-r--r-- | tests/migration/Program.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/migration/Program.java b/tests/migration/Program.java new file mode 100644 index 000000000..a4568bd67 --- /dev/null +++ b/tests/migration/Program.java @@ -0,0 +1,10 @@ +public class Program { + + public static void main(String[] argv) { + new Program().printHello(); + } + + public void printHello() { + System.err.println("Hello"); + } +} |