Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

42
votes
6answers
5k views

(this == null) in C#!

Due to a bug that was fixed in C# 4, the following program prints true. (Try it in LINQPad) void Main() { new Derived(); } class Base { public Base(Func<string> valueMaker) { ...
25
votes
3answers
2k views

'Delegate 'System.Action' does not take 0 arguments.' Is this a C# compiler bug (lambdas + two projects)?

Consider the code below. Looks like perfectly valid C# code right? //Project B using System; public delegate void ActionSurrogate(Action addEvent); //public delegate void ActionSurrogate2(); // Using ...
22
votes
2answers
426 views

C# compiler bug? Object initializer syntax used for write-only property in Expression makes csc crash

You may consider this a bug report, however I'm curious if I am terribly wrong here, or if there is an explanation from Eric or someone else at Microsoft. Update This is now posted as a bug on ...
13
votes
4answers
312 views

Why does this generics scenario cause a TypeLoadException?

This got a bit long-winded, so here's the quick version: Why does this cause a runtime TypeLoadException? (And should the compiler prevent me from doing it?) interface I { void Foo<T>(); } ...
12
votes
2answers
339 views

Is this a bug in dynamic?

When implementing dynamic dispatch using dynamic on a generic class, and the generic type parameter is a private inner class on another class, the runtime binder throws an exception. For example: ...
11
votes
4answers
513 views

GCC Fail? Or Undefined Behavior?

The following code goes into an infinite loop on GCC: #include <iostream> using namespace std; int main(){ int i = 0x10000000; int c = 0; do{ c++; i += i; ...
10
votes
8answers
228 views

C# compiler not recognizing yield return methods as similar?

If I have two yield return methods with the same signature, the compiler does not seem to be recognizing them to be similar. I have two yield return methods like this: public static ...
10
votes
1answer
408 views

Possible C# 4.0 compiler error, can others verify?

Since I don't know exactly what part of it alone that triggers the error, I'm not entirely sure how to better label it. This question is a by-product of the SO question c# code seems to get optimized ...
10
votes
3answers
335 views

C++ template function gets erronous default values

I have hit upon a real brain scorcher in C++, it has never happened to me before. The gist of the problem is that upon invocation of my (template) function the arguments I have defined defaults for ...
8
votes
1answer
322 views

VBA: What is causing this string argument passed to ParamArray to get changed to a number (that looks suspiciously like a pointer)?

FINAL EDIT: It does indeed appear to be a compiler bug - see the accepted answer. Using VBA within Excel 2007, I have the following code in 'Class1': Option Explicit Public Function strange(dummy ...
6
votes
1answer
391 views

64-bit pointer subtraction, signed integer underflow, and a possible compiler bug?

I recently tore my hair out debugging this piece of code (slightly modified for simplicity of presentation): char *packedData; unsigned char* indexBegin, *indexEnd; int block, row; // +------ bad! ...
4
votes
3answers
93 views

Why does this private template function compile? -> Compiler Bug VS 2009

This compiles with out problems in VS 2009? Am I stupid? GCC gives a warning, that the template is private....? What am I missing? #include <iostream> using namespace std; class A { private: ...
3
votes
3answers
97 views

Happily linking incompatible types leads to chaos

I've been trying to figure out some boundaries of g++, especially linking (C++) object files. I found the following curiosity which I tried to compress as much as possible before asking. Code File ...
3
votes
2answers
212 views

operator new inside namespace

namespace X { void* operator new (size_t); } gives error message as: error: ‘void* X::operator new(size_t)’ may not be declared within a namespace Is it a gcc compiler bug ? In older gcc ...
2
votes
4answers
111 views

Forward defining class in namespace?

The following snippet fails to compile with Visual Studio 2010, but GCC likes it: namespace Test { class Baz; // Adding class Bar; here and removing the class below makes it work // with ...
0
votes
1answer
274 views

Compiler warning when passing NSError ** as a method parameter

I've been scratching my head about this for the last 4 hours, trying out all kinds of little experiments, but I can't seem to figure out what's going wrong. Could this be a compiler bug? Test.m: - ...