diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-05 21:25:06 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-06 00:59:04 +0530 |
commit | 9d83ad93d04a1e16fe4a2acadf5f9f10bef6d1b9 (patch) | |
tree | 87a8331f7b173c0ae7acab30b1f05ba32f06ace5 /test/swftests.unused/ConstantInt.as | |
parent | cc52de43568d8cd58c7e2ef4e5cecf609da28a9c (diff) | |
download | hypervideo-pre-9d83ad93d04a1e16fe4a2acadf5f9f10bef6d1b9.tar.lz hypervideo-pre-9d83ad93d04a1e16fe4a2acadf5f9f10bef6d1b9.tar.xz hypervideo-pre-9d83ad93d04a1e16fe4a2acadf5f9f10bef6d1b9.zip |
[cleanup] Mark unused files
Diffstat (limited to 'test/swftests.unused/ConstantInt.as')
-rw-r--r-- | test/swftests.unused/ConstantInt.as | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/swftests.unused/ConstantInt.as b/test/swftests.unused/ConstantInt.as new file mode 100644 index 000000000..e0bbb6166 --- /dev/null +++ b/test/swftests.unused/ConstantInt.as @@ -0,0 +1,12 @@ +// input: [] +// output: 2 + +package { +public class ConstantInt { + private static const x:int = 2; + + public static function main():int{ + return x; + } +} +} |