repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
FDO insane profile
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
utf8concat.java
blob
8b8f47ee1a0c44edaf475bd4d6cd0c6cd732d822
1
public class
utf8concat
2
{
3
private static
String s
;
4
5
public static void
main
(
String
[]
args
)
6
{
7
// This causes a crash at runtime because the compiler is
8
// producing an invalid UTF-8 string literal.
9
s
=
"abc"
+ (
char
)
183
;
10
}
11
}