IDEA-131761 Quick documentation incorrectly renders value of byte[] constant

This commit is contained in:
Dmitry Batrak
2014-10-29 13:49:44 +04:00
parent 144862d625
commit 9c94ace79f
4 changed files with 24 additions and 1 deletions
@@ -0,0 +1 @@
<html><head> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://A"><code>A</code></a></b></small><PRE>public byte[] <b>bytes = &quot;&amp;amp;&quot;.getBytes()</b></PRE></body></html>
@@ -0,0 +1,3 @@
class A {
public byte[] bytes = "&amp;".getBytes();
}