diff options
Diffstat (limited to 'testData/results')
-rw-r--r-- | testData/results/TestDebugSymbols.dec | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testData/results/TestDebugSymbols.dec b/testData/results/TestDebugSymbols.dec new file mode 100644 index 0000000..42ae7a8 --- /dev/null +++ b/testData/results/TestDebugSymbols.dec @@ -0,0 +1,11 @@ +package pkg; + +class TestDebugSymbols { + private int m() { + String text = "text"; + long prolonged = 42L; + float decimated = (float)prolonged / 10.0F; + double doubled = (double)(2.0F * decimated); + return (text + ":" + prolonged + ":" + decimated + ":" + doubled).length(); + } +} |