-int i;
-spork { <<<"test">>>; };
-me.yield();
-//samp => now;
-fun void t() { <<<__func__>>>; }
+fun void _t() { <<<__func__>>>; }
+fun int t() {
+//<<<1>>>;
+ spork _t();
+
+ spork \a{ <<<__func__, " ", a>>>; }(1);
+
+ spork { <<<__func__>>>; };
+}
spork t();
+t();
me.yield();
-samp => now;
--- /dev/null
+fun void _t() { <<<__func__>>>; }
+class C {
+<<<this>>>;
+fun void __t() { <<<__func__>>>; }
+fun void __t(int i) { <<<this, " ", __func__, " ", i>>>; }
+fun void t() {
+ spork _t();
+ spork _t();
+ spork this.__t();
+ spork __t();
+<<<this>>>;
+ spork __t(2);
+me.yield();
+ spork \{ <<<" " , __func__>>>; }();
+
+ spork \a{ <<<__func__, " ", a>>>; }(1);
+
+ spork { <<<__func__>>>; };
+}
+spork t();
+spork t();
+t();
+t();
+me.yield();
+}
+<<<C c>>>;
+me.yield();