X++:
// AOSMode:Server
class CrashTheAOS
{
}
static void main(Args _args)
{
Map testMap = new Map(Types::Integer, Types::Class);
container packedMap;
;
testMap.insert(1, new SmmUpdateFinancial());
packedMap = testMap.pack();
testMap = Map::create(packedMap); // Bang!!!
// the class SmmUpdateFinancial doesn't have ::create(...)
}