/* LICENSE BEGIN This file is part of the SixtyFPS Project -- https://sixtyfps.io Copyright (c) 2021 Olivier Goffart Copyright (c) 2021 Simon Hausmann SPDX-License-Identifier: GPL-3.0-only This file is also available under commercial licensing terms. Please contact info@sixtyfps.io for more information. LICENSE END */ Test := Rectangle { GridLayout { Rectangle { height: 42px; // ^error{Cannot specify both 'height' and 'min-height'} min-height: 42px; max-width: 42px; } Rectangle { width: 42px; // ^error{Cannot specify both 'width' and 'max-width'} min-height: 42px; max-width: 42px; } } }