| 
         | 
    ||
        
  | 
    
I'm not finding this in the book or the FAQ, so here goes:
a = {
   b = {};
    b.c = 22;
};
will fail with a "expected to close '{' at line 1"  on Lua 5.0
According to the syntax definition in the reference manual this is 
supposed to work. Am I missing something?