where a compiler does not produce the correct output for certain syntactically correct source code.

learn more… | top users | synonyms

4
votes
1answer
193 views

Why this behavior on clang -O3?

Here is a short program to count the number of divisors of an integer. The program does work correctly. The problem is, however, that under the -O3 optimization flag of the current trunk of the Clang ...
22
votes
2answers
228 views

Why are generic and non-generic structs treated differently when building expression that lifts operator == to nullable?

This looks like a bug in lifting to null of operands on generic structs. Consider the following dummy struct, that overrides operator==: struct MyStruct { private readonly int _value; ...
6
votes
1answer
87 views

Why does this covariance declaration compile? [duplicate]

Consider this interface: interface Test<out T> where T : struct { } It compiles without errors or warnings. As discussed in this question, and mentioned in the Covariance and Contravariance ...
0
votes
2answers
84 views

Can't get Java enum that implements interface which extends another interface to compile

I want to create an enum that implements I2, which extends I1: package a; import static a.E1.E1A; interface I1 extends I1 {} interface I2 extends I1 {} enum E1 implements I2 { E1A, A1B; } class A { ...
0
votes
1answer
98 views

VS2012 - Decltype as template parameter in trailing return type

The following code works on gcc and even VC11 Nov CTP, but fails to compile with VC11 RTM. template<typename T> struct A { typedef typename T::Type BreakMe; T x; }; struct B { typedef ...
4
votes
1answer
90 views

Work around compiler bug

I we have big computation geometry library. There is a problem in it's kernel. We have definitions scalar taits, and helper accesors in form of free functions, to simply write cg::epsilon<T>() ...
4
votes
1answer
111 views

Zero initialization of POD

struct Line { Bounds bounds_; Vector origin_; uint32_t begin_; uint32_t end_; dist ascent_; dist descent_; }; which ...
0
votes
0answers
145 views

Did I find a Scala compiler bug?

In Scala 2.9.1, this does not compile, failing with not found: value b: case class CaseClass(field: String) object SomeObject { //val kludge = field def x(input: (CaseClass, String) => ...
1
vote
3answers
67 views

Why empty assignment compiled with no errors

Here is my snippet: var country = BLLocations.Instance.GetCountries(); ddlCountry.DataSource = ddlCountry.DataTextField = "Country"; ddlCountry.DataValueField = "CountryCode"; ddlCountry.DataBind(); ...
4
votes
1answer
157 views

Oracle JDK and Eclipse JDT compilers disagree! Which is compiling this incorrectly? Unusual generics and inferrence

I have a piece of code which is compiling inconsistently between Oracle JDK 7 and Eclipse JDT 7, but since I'm not sure about which compiler is making the mistake(s) I thought I should ask for ...
5
votes
3answers
212 views

Possible Java compiler bug! Program does not compile with some compilers

First, a little background (or skip down a little if not interested). I'm irritated and confused! This should be a pretty simple use case, and indeed my code has been compiling just fine with the ...
3
votes
1answer
173 views

compile error on variadic template function parameter

I'm trying to write some parameter wrapping helper code like below #include <type_traits> #include <string> struct test{}; namespace ns { struct test{}; } template<typename ...
7
votes
3answers
163 views

Why do e += 1 and e = e + 1 compile differently in CoffeeScript?

I always assumed that <var> += 1 and <var> = <var> + 1 have the same semantics in JS. Now, this CoffeeScript code compiles to different JavaScript when applied to the global variable ...
24
votes
2answers
757 views

Possible compiler bug in Visual C++ 2012 (x86)?

I'm currently experiencing random floating point errors when compiling for x86 targets using VC++ 11 (CTP Update 1). See the short example "test.cpp" below, and compile using: cl /GL /O2 /EHsc ...
2
votes
1answer
92 views

Should exporting a class make a difference?

class __declspec(dllexport) DI_1 { DI_1& operator = (DI_1 &){}; }; class DI_2 { DI_2& operator = (DI_2 &){}; }; int main() { DI_1 a; DI_2 b; return 0; } The ...
5
votes
4answers
401 views

Printing NULL behavior

Came across an interesting interview question: test 1: printf("test %s\n", NULL); printf("test %s\n", NULL); prints: test (null) test (null) test 2: printf("%s\n", NULL); printf("%s\n", NULL); ...
1
vote
2answers
345 views

gcc inline asm statement gets optimized away - wrong constraints?

I'm having trouble with a gcc inline asm statement; gcc seems to think the result is a constant (which it isn't) and optimizes the statement away. I think I am using the operand constraints correctly, ...
2
votes
2answers
344 views

A bug in GCC implementation of bit-fields

Working in C11, the following struct: struct S { unsigned a : 4; _Bool b : 1; }; Gets layed out by GCC as an unsigned (4 bytes) of which 4 bits are used, followed by a _Bool (4 bytes) of ...
3
votes
2answers
588 views

Mixing Out and Named Parameters in C#: Why Does Out Parameter Need to be Named As Well?

Short Version: A named argument following an out argument gives a compiler error, but I cannot find any support for this behaviour in the language specification. Long Version: I'm using the ...
6
votes
3answers
137 views

Why SFINAE gets messed up when changing the place of the class template specialization? Is this a C++ bug?

Following code gives compiler error which is expected (Demo): 1 template<bool> struct Range; 2 3 template<int value, typename = Range<true> > struct Unique; 4 ...
2
votes
1answer
105 views

Is this an F# 2.0 parser bug?

Microsoft (R) F# 2.0 Interactive build 4.0.40219.1 I'm trying to define new record type: type TestOptions = { perRunGC : bool; collectGCStat : bool; } All is fine, but let's add one ...
3
votes
4answers
199 views

Compiler Error in Function Template with VS2010 SP1

Why i get the marked compiler error (C2899)? I tried with VS2010 SP1. #include <list> #include <vector> #include <algorithm> template <typename source_container_type, typename ...
1
vote
2answers
163 views

Is this a compiler error in Visual Studio 2010?

I have a bug in this conditional: while(CurrentObserverPathPointDisplacement > lengthToNextPoint && CurrentObserverPathPointIndex < (PathSize - 1) ) { CurrentObserverPathPointIndex ...
3
votes
4answers
327 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 ...
3
votes
3answers
192 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 ...
10
votes
8answers
316 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 ...
23
votes
2answers
596 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 ...
3
votes
2answers
746 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 ...
12
votes
2answers
451 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: ...
15
votes
4answers
736 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>(); } ...
4
votes
3answers
120 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: ...
6
votes
1answer
592 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! ...
3
votes
2answers
331 views

Why does this compile? The code seems to be breaking constaints on the type parameters

In the following test, TesterClass places a constraint on the relation between its two type parameters. The method func2() seems to break that constraint, and I expect it to cause a typing compilation ...
32
votes
3answers
5k 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 ...
10
votes
1answer
611 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 ...
8
votes
1answer
649 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 ...
10
votes
3answers
450 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 ...
0
votes
1answer
438 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: - ...
9
votes
4answers
2k views

Are function-local typedefs visible inside C++0x lambdas?

I've run into a strange problem. The following simplified code reproduces the problem in MSVC 2010: template <typename T> struct dummy { static T foo(void) { return T(); } }; int ...
71
votes
6answers
7k 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) { ...