I found as_restore bug.
Revision
r595
Compiler
MSVC8
script code
class HogeManager{ array< Hoge >@ hogeArray;};class Hoge {};}}
When my application save and load byte code with this code, assertion failed.
Message
Assertion failed: ot, file ..\..\source\as_restore.cpp, line 1244
But when my application use this code , assertion is not failed.
class Hoge {};class HogeManager{ array< Hoge >@ hogeArray;};
Please investigate.