mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
add test
This commit is contained in:
parent
fc610b9999
commit
865ea44a1f
1 changed files with 7 additions and 0 deletions
|
@ -20,6 +20,7 @@ LUAU_FASTFLAG(LuauAttributeSyntax);
|
|||
LUAU_FASTFLAG(LuauLeadingBarAndAmpersand2);
|
||||
LUAU_FASTFLAG(LuauAttributeSyntaxFunExpr);
|
||||
LUAU_FASTFLAG(LuauDeclarationExtraPropData);
|
||||
LUAU_FASTFLAG(LuauDisallowVariadicInReturnParenType);
|
||||
|
||||
namespace
|
||||
{
|
||||
|
@ -3565,5 +3566,11 @@ TEST_CASE_FIXTURE(Fixture, "mixed_leading_intersection_and_union_not_allowed")
|
|||
matchParseError("type A = | number & string & boolean", "Mixing union and intersection types is not allowed; consider wrapping in parentheses.");
|
||||
}
|
||||
|
||||
TEXT_CASE_FIXTURE(Fixture, "do_not_parse_variadic_type_in_paren_type_in_returns")
|
||||
{
|
||||
ScopedFastFlag sff{FFlag::LuauDisallowVariadicInReturnParenType, true};
|
||||
|
||||
matchParseError("local function f(): (number, ...string) | boolean end", "Expected identifier when parsing expression, got '|'");
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
||||
|
|
Loading…
Add table
Reference in a new issue