Index: libcfa/src/concurrency/kernel/startup.cfa
===================================================================
--- libcfa/src/concurrency/kernel/startup.cfa	(revision 6b33e891da6ed781bdcec69c5dfdd3cb8a9d0e44)
+++ libcfa/src/concurrency/kernel/startup.cfa	(revision a9bf5055e505154b067bd4a50b65b391959f5a48)
@@ -474,5 +474,5 @@
 //-----------------------------------------------------------------------------
 // Main thread construction
-static void ?{}( coroutine$ & this, current_stack_info_t * info) with( this ) {
+static void ?{}( coroutine$ & this, current_stack_info_t * info ) with( this ) {
 	stack.storage = info->storage;
 	with(*stack.storage) {
@@ -485,5 +485,5 @@
 	state = Start;
 	starter = 0p;
-	this.last = 0p;
+	this.last = 0p;										// "last" overloaded in scope => qualification
 	cancellation = 0p;
 	ehm_state.ehm_buffer{};
@@ -492,5 +492,5 @@
 }
 
-static void ?{}( thread$ & this, current_stack_info_t * info) with( this ) {
+static void ?{}( thread$ & this, current_stack_info_t * info ) with( this ) {
 	ticket = TICKET_RUNNING;
 	state = Start;
