slint/internal/compiler/tests/syntax/exports/unused_compo.slint

13 lines
254 B
Text

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
component Used {
}
export component Ok {
Used {}
}
component Unused {
//^warning{Component is neither used nor exported}
}