title Nested Interaction with Fragment and Self-Invocation
        A.Read() {
          B.Submit() {
            Process() {
              if (true) {
                ProcessCallback() {
                  A.method
                }
              }
            }
          }
        }