1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-01 07:05:14 +00:00

[cleanup] Mark unused files

This commit is contained in:
pukkandan
2021-06-05 21:25:06 +05:30
parent cc52de4356
commit 9d83ad93d0
30 changed files with 5 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
// input: []
// output: 1
package {
public class StaticRetrieval {
public static var v:int;
public static function main():int{
if (v) {
return 0;
} else {
return 1;
}
}
}
}