mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Test update
This commit is contained in:
parent
52a8aca30d
commit
b37dfcee62
1 changed files with 6 additions and 0 deletions
|
@ -26,6 +26,11 @@ namespace Tests
|
|||
{
|
||||
return val;
|
||||
}
|
||||
|
||||
const float& MethodA3(const float& val)
|
||||
{
|
||||
return val;
|
||||
}
|
||||
};
|
||||
|
||||
struct StructB
|
||||
|
@ -546,6 +551,7 @@ void UseIt()
|
|||
sa.MethodA1(sa, 1);
|
||||
float f = 123;
|
||||
sa.MethodA2(f);
|
||||
sa.MethodA3(f);
|
||||
Interop::StructB sb;
|
||||
sb.MethodB0(0);
|
||||
sb.MethodB1(sb, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue