aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/codemodel/ecmascript7/samples/basic/extends.js
blob: e27191e89c6be1f549e585cbb07fb524535dbc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

class MyClass
{
}

class MySuperClass extends MyClass
{
}