1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00
Beef/IDE/Tests/CompileFail001/src/Cases.bf

53 lines
694 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
#pragma warning disable 168
using System;
namespace IDETest
{
class Cases
{
public void Test()
{
Result<int> iResult = .Err;
2025-02-22 10:40:14 -08:00
if ((iResult case .Ok(var val0)) && (iResult case .Ok(var val1)))
2019-08-23 11:56:54 -07:00
{
2025-02-22 10:40:14 -08:00
val0 = 0;
val1 = 0;
2019-08-23 11:56:54 -07:00
}
2025-02-22 10:40:14 -08:00
val0 = 0;
val1 = 0; //FAIL
2019-08-23 11:56:54 -07:00
2025-02-22 10:40:14 -08:00
int val2;
if ((true) || (iResult case .Ok(out val2)))
2019-08-23 11:56:54 -07:00
{
2025-02-22 10:40:14 -08:00
int a = val2; //FAIL
2019-08-23 11:56:54 -07:00
}
}
2021-06-19 11:25:00 -07:00
int Switch1(Result<int> res)
{
switch (res)
{
case .Ok(let a):
fallthrough;
case .Err(let b): //FAIL
return 1;
}
2021-06-19 11:25:00 -07:00
}
int Switch2(Result<int> res)
{
switch (res)
{
case .Ok(let a):
if (a > 0)
2021-06-19 11:16:04 -07:00
break;
fallthrough;
case .Err:
return 1;
}
} //FAIL
2019-08-23 11:56:54 -07:00
}
}