[svn r137] Many fixes towards tango.io.Console working, but not quite there yet...

In particular, assertions has been fixed to include file/line info, and much more!
This commit is contained in:
Tomas Lindquist Olsen
2008-01-14 05:11:54 +01:00
parent b15b3484c8
commit 4505b9b006
58 changed files with 1986 additions and 754 deletions

View File

@@ -1,5 +1,7 @@
module interface1;
extern(C) int printf(char*,...);
interface Inter
{
void func();

View File

@@ -1,5 +1,7 @@
module interface2;
extern(C) int printf(char*,...);
interface A
{
void a();

View File

@@ -1,5 +1,7 @@
module interface3;
extern(C) int printf(char*,...);
interface I
{
void func();

View File

@@ -1,5 +1,7 @@
module interface4;
extern(C) int printf(char*,...);
interface I
{
void func();

View File

@@ -1,5 +1,7 @@
module interface5;
extern(C) int printf(char*,...);
interface I
{
void func();

View File

@@ -1,5 +1,7 @@
module interface6;
extern(C) int printf(char*,...);
interface I
{
void Ifunc();

View File

@@ -1,5 +1,7 @@
module interface7;
extern(C) int printf(char*,...);
interface I
{
}

View File

@@ -1,5 +1,6 @@
import llvm.intrinsic;
extern(C) int printf(char*,...);
extern(C) int scanf(char*,...);
void main()

View File

@@ -1,5 +1,7 @@
module mainargs1;
extern(C) int printf(char*,...);
void main(string[] args)
{
foreach(v; args)

View File

@@ -1,5 +1,7 @@
module memory1;
extern(C) int printf(char*,...);
void main()
{
auto a = new int[16];