aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/generatorCallsGC.qml
blob: 7fe366cac827439c58ea17d3e21b11b14473bc87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQml 2.15

QtObject {
  function test_generator_gc() {
    ((function*() { gc() })()).next();
    ((function*() { gc() })()).next();
    ((function*() { gc() })()).next();
    ((function*() { gc() })()).next();
  }

  Component.onCompleted: () => test_generator_gc()

}