1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00

More tests

This commit is contained in:
Brian Fiete 2020-09-25 05:36:33 -07:00
parent 480ee883bb
commit f83875e8ad
3 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,29 @@
namespace IDETest
{
class Declarations
{
class ClassA : InnerA //FAIL
{
class InnerA
{
}
}
class ClassB : InnerB.Zop //FAIL
{
class InnerB
{
}
}
class ClassC : InnerC.Zop //FAIL
{
class InnerC
{
public class Zop
{
}
}
}
}
}