diff options
| author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-06 10:25:53 +0000 |
|---|---|---|
| committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-06 10:25:53 +0000 |
| commit | 52ff3867a0cc0fe4072d5174a5ccc541e0ed8641 (patch) | |
| tree | 2832418d891195d75e38237ab03ee22586aa5042 /libjava/testsuite/libjava.compile | |
| parent | e94410ad3715dc5532e1ebd96eb1499d4bf9c8aa (diff) | |
| download | ppe42-gcc-52ff3867a0cc0fe4072d5174a5ccc541e0ed8641.tar.gz ppe42-gcc-52ff3867a0cc0fe4072d5174a5ccc541e0ed8641.zip | |
2000-03-06 Bryce McKinlay <bryce@albatross.co.nz>
* libjava.compile/PR127.java: New file.
PR 127 test case from Joerg Brunsmann.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32356 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/testsuite/libjava.compile')
| -rw-r--r-- | libjava/testsuite/libjava.compile/PR127.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR127.java b/libjava/testsuite/libjava.compile/PR127.java new file mode 100644 index 00000000000..6a2e699a46b --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR127.java @@ -0,0 +1,11 @@ +// Test case for PR127: +// gcj dumps core on method invocation on a primitive type + +class PR127 +{ + void f() + { + int i; + i.f(); + } +} |

