aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlls/utils/data/completions/conditionalExpression.qml
blob: 933c71d26c4f05d2253ed70475a386e8c6bfbb07 (plain)
1
2
3
4
5
6
7
import QtQuick

Item {
    function f(a,b,c) {
        a == b ? b == c ? c : b + 3 : 42
    }
}