Nested cfoutputs

I saw a passing reference some time ago that indicated Lucee did not support nested cfoutputs with each of them having a query = X attribute.
The docs for cfoutput says this:
To nest cfoutput tags, see the "Usage" section.
But there is no mention of it in the usage section.
This could be a real show-stopper for me.
Can anyone point to any info?
Thanks in advance.
km

just keep track of the outer query currentrow in a variable, i.e. r = qry.currentrow; and use explicit notation qry.column[r] when referring to it inside the nested outputs?