1
0
mirror of https://github.com/gryf/tagbar.git synced 2026-01-05 13:24:19 +01:00

Add tests to repository

This commit is contained in:
Jan Larres
2013-03-28 00:16:03 +13:00
parent b6f47e4020
commit db9404ca1a
128 changed files with 54624 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using Foo.Sub;
public class GlobalTestClass {
public GlobalTestClass() {
}
}
namespace Maman {
static int main () {
stdout.printf ("Namespace Test\n");
Bar.run ();
new GlobalTestClass();
var obj = new ClassInNestedNamespace ();
return 0;
}
class Bar : Object {
public static void run () {
stdout.printf ("Class in Namespace Test\n");
}
}
}
public class Foo.Sub.ClassInNestedNamespace {
}
void main () {
Maman.main ();
}