13 lines
118 B
SourcePawn
13 lines
118 B
SourcePawn
|
methodmap Egg
|
||
|
{
|
||
|
public void illegal(Egg x) {
|
||
|
this = x;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
public main()
|
||
|
{
|
||
|
Egg egg;
|
||
|
egg.illegal(egg);
|
||
|
}
|