mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 09:27:59 +02:00
Dependency fix for elemented types (ie: pointer types)
This commit is contained in:
parent
20af4e2adc
commit
4b7ad7036c
6 changed files with 65 additions and 1 deletions
29
IDE/Tests/BugW007/src/Program.bf
Normal file
29
IDE/Tests/BugW007/src/Program.bf
Normal file
|
@ -0,0 +1,29 @@
|
|||
#pragma warning disable 168
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
namespace Bug //Test
|
||||
{
|
||||
struct Zonkle
|
||||
{
|
||||
int mA;
|
||||
}
|
||||
|
||||
class Zorp
|
||||
{
|
||||
Dictionary<int, Zonkle*> mDict;
|
||||
}
|
||||
}
|
||||
|
||||
namespace Bug
|
||||
{
|
||||
|
||||
class Program
|
||||
{
|
||||
public static int Main(String[] args)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue