mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-06 18:40:34 +00:00
14 lines
398 B
Text
14 lines
398 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
Foo := Rectangle {}
|
|
Bar := Rectangle {}
|
|
|
|
export { Foo }
|
|
// ^error{Duplicated export 'Foo'}
|
|
export { Foo }
|
|
// ^error{Duplicated export 'Foo'}
|
|
export { Bar }
|
|
// ^error{Duplicated export 'Bar'}
|
|
export { Foo as Bar }
|
|
// ^error{Duplicated export 'Bar'}
|