aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmldom/domdata/domitem/conditionalExpression.qml
blob: 027078b0efd848aade922f3aeaa07677bf915713 (plain)
1
2
3
4
5
6
7
8
import QtQuick

Item {
    function f(a, b, c) {
        a?b:c;
    }

}