mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-12 21:10:37 +00:00
18 lines
379 B
C++
18 lines
379 B
C++
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||
|
#include "Luau/NonStrictTypeChecker.h"
|
||
|
|
||
|
#include "Fixture.h"
|
||
|
|
||
|
#include "doctest.h"
|
||
|
|
||
|
using namespace Luau;
|
||
|
|
||
|
TEST_SUITE_BEGIN("NonStrictTypeCheckerTest");
|
||
|
|
||
|
TEST_CASE_FIXTURE(Fixture, "basic")
|
||
|
{
|
||
|
Luau::checkNonStrict(builtinTypes, nullptr);
|
||
|
}
|
||
|
|
||
|
TEST_SUITE_END();
|