Adam Ralph

Results 214 comments of Adam Ralph

Depends on https://github.com/scriptcs/scriptcs/issues/974

So is it a problem in 0.15 or not? That's still using the "old" Roslyn bits.

I've confirmed it is also a problem in 0.15. So it's not just the new Roslyn bits.

I could have sworn we already had this bug raised but I can't find one. I know I've seen this before, I guess we just never raised an issue for...

Aha! I knew I'd seen it before. But... check this out: ![image](https://cloud.githubusercontent.com/assets/677704/10672407/465f19fa-78f0-11e5-84fc-9ac8e0129450.png) It seems it's dependent on the "wrongness" of the namespace. I.e. the first part of `System.Oops` exists, and...

It's because the fix is looking for CS0246, which is what is generated with `using foo;`, but `using System.Oops` generates CS0234.

The nasty thing about this is that you may have a whole load of context loaded up and be right in the middle of something interesting, and then you mistype...