forked from qt-creator/qt-creator
Change-Id: Id7e435a7c556c7fc469b9055ca772a7850e16676 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
15 lines
148 B
QML
15 lines
148 B
QML
import QtQuick 2.0
|
|
|
|
Item {
|
|
enum Test {
|
|
A,
|
|
B
|
|
}
|
|
|
|
enum TestWithValues {
|
|
A = 11.1,
|
|
B,
|
|
C = 3
|
|
}
|
|
}
|