Can display object belong to multiple display groups?

It seems like the answer is no, but I’d like to make sure.

local obj = display.newImageRect(…)
local group1 = display.newGroup()
local group2 = display.newGroup()

group1:insert(obj)
group2:insert(obj)

When we do this, does obj move from group1 to group2 or does it belong to both group1 and group2? [import]uid: 120903 topic_id: 33348 reply_id: 333348[/import]

Nope a display object is moved out of a group when you insert it into another one. [import]uid: 33275 topic_id: 33348 reply_id: 132431[/import]

Nope a display object is moved out of a group when you insert it into another one. [import]uid: 33275 topic_id: 33348 reply_id: 132431[/import]